-
Notifications
You must be signed in to change notification settings - Fork 25
/
.gitpod.yml
32 lines (31 loc) · 906 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
31
32
# Commands to start on workspace startup
tasks:
- name: Start App Server
# env vars stored as project environment variable in gitpod
before: |
sudo apt-get install git-lfs
git lfs pull
echo $FIREBASE_CONFIG_TS_B64 | base64 -d > src/environments/firebaseConfig.ts
init: yarn install
# https://www.gitpod.io/blog/gitpodify/#unreachable-localhost-urls
command: yarn ng serve --host 0.0.0.0 --disable-host-check
## Could provide additional task to run in parallel terminal
# - name: Sync content
# Ports to expose on workspace startup
ports:
- port: 4200
onOpen: open-preview
github:
prebuilds:
master: true
branches: false
pullRequests: false
pullRequestsFromForks: false
addCheck: false
addComment: false
addBadge: false
vscode:
extensions:
- Angular.ng-template
- dbaeumer.vscode-eslint
- esbenp.prettier-vscode