generated from Monogramm/project-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitpod.yml
67 lines (59 loc) · 1.98 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
image:
file: Dockerfile.gitpod
ports:
- port: 8000
- port: 6006
tasks:
# https://github.com/gitpod-io/gitpod/issues/666#issuecomment-534347856
- before: >
[[ ! -z ${GNUGPG} ]] &&
cd ~ &&
rm -rf .gnupg &&
echo ${GNUGPG} | base64 -d | tar --no-same-owner -xzvf -
name: signed terminal
init: >
[[ ! -z ${GNUGPG_KEY} ]] &&
git config --global commit.gpgsign true &&
git config --global user.signingkey ${GNUGPG_KEY}
command: >
cd $GITPOD_REPO_ROOT &&
./manage.sh
- init: ./manage.sh local:build
name: backend
command: >
gp sync-done 'backend-init' &&
./manage.sh local:start-back --no-interaction
- name: frontend
command: >
gp sync-await 'backend-init' &&
./manage.sh local:start-front
- name: storybook
command: >
gp sync-await 'backend-init' &&
gp await-port 8000 &&
./manage.sh local:start-story
vscode:
extensions:
- [email protected]:WX8Y3EpQk3zgahy41yJtNQ==
- [email protected]:2V0NCoZNF9GELURKXgdHeQ==
- [email protected]:OWaLl5oCHRK7fCfvhwK3og==
- [email protected]:02aHhbJ0Q4aGdjHXlTdVKg==
- [email protected]:03mwRhlVpWDul4qBChcVUA==
github:
prebuilds:
# enable for the master/default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: false
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: false
# add a check to pull requests (defaults to true)
addCheck: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
addComment: true
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
addBadge: false
# add a label once the prebuild is ready to pull requests (defaults to false)
addLabel: true