Skip to content

Commit 17313fe

Browse files
authored
Add gitpod.yml (dagster-io#7088)
1 parent 7bcdd05 commit 17313fe

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.gitpod.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
tasks:
2+
- init: |
3+
python3 -m venv /workspace/venv
4+
source /workspace/venv/bin/activate
5+
make dev_install
6+
cd /workspace
7+
zip -qr venv.zip venv
8+
rm -fr venv
9+
- command: |
10+
cd /workspace
11+
unzip -q venv.zip
12+
source /workspace/venv/bin/activate
13+
cd /workspace/dagster
14+
15+
ports:
16+
- port: 3000
17+
onOpen: open-browser

0 commit comments

Comments
 (0)