forked from jupyterlite/jupyterlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
50 lines (50 loc) · 1.4 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
github:
prebuilds:
master: true
pullRequests: true
pullRequestsFromForks: true
addCheck: false
addComment: false
addBadge: false
addLabel: false
tasks:
- name: setup
init: |
pushd /workspace
wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba
popd
# bootstrap activation commands for other tasks to reuse
cat <<EOT > /workspace/bin/activate-env.sh
export MAMBA_ROOT_PREFIX=/workspace/.micromamba
export MAMBA_EXE=/workspace/bin/micromamba
$(/workspace/bin/micromamba shell hook --shell=bash)
export JUPYTER_PREFER_ENV_PATH=1
micromamba activate
EOT
source /workspace/bin/activate-env.sh
micromamba config append channels conda-forge
micromamba install -n base -y -f .binder/environment.yml
doit build
command: |
gp sync-done setup
source /workspace/bin/activate-env.sh
doit watch
- name: watch
command: |
gp sync-await setup
source /workspace/bin/activate-env.sh
doit serve
- name: docs
command: |
gp sync-await setup
source /workspace/bin/activate-env.sh
doit watch:docs
- name: auto-activate
command: |
gp sync-await setup
echo "source /workspace/bin/activate-env.sh" >> ~/.bashrc
source /workspace/bin/activate-env.sh
ports:
- port: 5000
- port: 8000
- port: 8888