forked from fonoster/routr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
30 lines (28 loc) · 986 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## Learn more about this file at 'https://www.gitpod.io/docs/references/gitpod-yml'
##
## This '.gitpod.yml' file when placed at the root of a project instructs
## Gitpod how to prepare & build the project, start development environments
## and configure continuous prebuilds. Prebuilds when enabled builds a project
## like a CI server so you can start coding right away - no more waiting for
## dependencies to download and builds to finish when reviewing pull-requests
## or hacking on something new.
##
tasks:
- name: Setup & start
before: sudo sh -c "cat etc/hosts.txt >> /etc/hosts && mkdir -p /etc/routr && cp etc/certs/signaling.p12 /etc/routr/certs/signaling.p12"
init: npm run make
command: npm start
ports:
- port: 51901-51904
onOpen: ignore
- port: 5060-5063
onOpen: ignore
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: true
addComment: false
addBadge: true