forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
78 lines (73 loc) · 2.05 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
68
69
70
71
72
73
74
75
76
77
78
image: ghcr.io/freecodecamp/gitpod:latest
ports:
- port: 27017 # mongodb
onOpen: ignore
- port: 8000 # client
onOpen: notify
visibility: public
- port: 9228 # node debug
onOpen: ignore
- port: 3000 # api
onOpen: ignore
visibility: public
- port: 9229 # node debug
onOpen: ignore
- port: 9230 # client node debug
onOpen: ignore
- port: 3200 # challenge editor api
visibility: public
- port: 3300 # challenge editor client
visibility: public
- port: 8025 # MailHog
visibility: public
onOpen: ignore
- port: 1025 # MailHog
onOpen: ignore
- port: 9323 # Playwright
visibility: public
onOpen: ignore
tasks:
- before: |
echo '
export COOKIE_DOMAIN=.gitpod.io
export HOME_LOCATION=$(gp url 8000)
export API_LOCATION=$(gp url 3000)
export CHALLENGE_EDITOR_API_LOCATION=$(gp url 3200)
export CHALLENGE_EDITOR_CLIENT_LOCATION=$(gp url 3300)
' >> ~/.bashrc;
exit;
- name: db
# starting mongod in background, so it doesn't block prebuilds
before: >
cd api/tools &&
docker compose up -d
- name: server
before: export COOKIE_DOMAIN=.gitpod.io && export HOME_LOCATION=$(gp url 8000) && export API_LOCATION=$(gp url 3000)
# init is not executed for prebuilt workspaces and restarts,
# so we should put all the heavy initialization here
init: >
cp sample.env .env &&
pnpm install &&
gp sync-done pnpm-install &&
pnpm run build:curriculum &&
gp ports await 27017
command: >
pnpm run seed &&
mongosh --eval "db.fsyncLock(); db.fsyncUnlock()" &&
gp ports await 27017 &&
cd api &&
pnpm run develop
- name: client
before: export HOME_LOCATION=$(gp url 8000) && export API_LOCATION=$(gp url 3000)
init: >
cd ./client &&
gp sync-await pnpm-install &&
cd ..
command: >
gp ports await 3000 &&
pnpm run develop:client -- -H '0.0.0.0'
openMode: split-right
vscode:
extensions:
- dbaeumer.vscode-eslint
- esbenp.prettier-vscode