-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitpod.yml
43 lines (41 loc) · 1.04 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
# Specify the workspace image configuration
image:
file: .gitpod/Dockerfile
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
tasks:
- name: book
init: |
pip install changelog-cli
pip install -U jupyter-book
command: |
jb build .
python -m http.server -d _build/html/
- name: services
init: |
docker-compose -f .gitpod/docker-compose.yml up -d
gp await-port 5432
source .gitpod/setup.sh
command: |
docker-compose -f .gitpod/docker-compose.yml up
- name: meltano setup
env:
PIP_USER: false
init: |
export PIP_USER=false
cd meltano
python3 -m venv .venv
source .venv/bin/activate
mkdir .meltano
pip install meltano
meltano install
command: |
cd meltano
source .venv/bin/activate
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- port: 8088
onOpen: open-browser
visibility: private
- port: 5432
onOpen: ignore
visibility: private