-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitpod.yml
31 lines (28 loc) · 910 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
image:
file: .gitpod/Dockerfile
ports:
- port: 8080
onOpen: open-browser
tasks:
- init: yarn install
- name: Kafka
init: chmod +x deployment/scripts/*.bash && ./deployment/scripts/setup.bash
command: >
KAFKA_HOME=/kafka &&
./deployment/scripts/init-kafka.bash $KAFKA_HOME .env
- name: Nats
init: chmod +x deployment/scripts/*.bash && ./deployment/scripts/setup.bash
command: ./deployment/scripts/init-nats.bash .env
- name: Nginx
command: export NGINX_DOCROOT="${GITPOD_REPO_ROOT}/www" && nginx
- name: mongodb
command: mkdir -p /workspace/data && mongod --dbpath /workspace/data
- name: redis
command: redis-server
- name: statsd
init: chmod +x deployment/scripts/*.bash && ./deployment/scripts/setup.bash
command: ./deployment/scripts/init-statsd.bash
vscode:
extensions:
- editorconfig.editorconfig
- dbaeumer.vscode-eslint