-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitpod.yml
More file actions
23 lines (20 loc) · 732 Bytes
/
Copy path.gitpod.yml
File metadata and controls
23 lines (20 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image:
file: .gitpod.Dockerfile
ports:
- port: 8000
# onOpen: open-preview
tasks:
- init: pip3 install -r requirements.txt && yarn newinstall
command: clear && ./manage.py migrate && ./manage.py runserver
name: Split terminal
- openMode: split-right
command: echo SplitTerminal && clear
- command: gp await-port 8000 && gp preview $(gp url 8000)/contacts/
github:
prebuilds:
# enable for the master/default branch (defaults to true)
master: true
# enable for pull requests coming from this repo (defaults to true)
pullRequests: false
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
addComment: false