-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy path.gitpod.yml
More file actions
20 lines (20 loc) · 608 Bytes
/
.gitpod.yml
File metadata and controls
20 lines (20 loc) · 608 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
image:
file: support/docker/gitpod/Dockerfile
ports:
- port: 3000
onOpen: open-preview
- port: 5432
onOpen: ignore
- port: 6379
onOpen: ignore
- port: 9000
onOpen: ignore
tasks:
- name: Redis
command: redis-server
- name: PeerTube
before: export NODE_CONFIG="{\"import\":{\"videos\":{\"torrent\":{\"enabled\":false}}},\"webserver\":{\"hostname\":\"$(gp url 3000 | cut -d/ -f3)\",\"port\":\"443\",\"https\":true}}"
init: >
psql -h localhost -d postgres --file=support/docker/gitpod/setup_postgres.sql &&
npm run install-node-dependencies
command: npm run build:server && npm run dev