forked from jupyter/accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
59 lines (55 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
github:
prebuilds:
master: true
branches: 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 python=3.10 nodejs=18 yarn
source /workspace/bin/activate-env.sh
python -m pip install -e ".[dev,docs,test]" && jlpm install && jlpm run build
gp sync-done setup
command: |
gp sync-done setup
source /workspace/bin/activate-env.sh
# Set no token and allow any origin, so that you can open it in a new tab
# Disable iframe security so can load in the editor as well
jupyter lab --dev-mode --watch --extensions-in-dev-mode --ServerApp.IdentityProvider.token='' --ServerApp.allow_origin=* --ServerApp.tornado_settings='{"headers": {"Content-Security-Policy": "frame-ancestors *"}}' --ServerApp.allow_remote_access=1
- name: auto-activate
command: |
gp sync-await setup
echo "source /workspace/bin/activate-env.sh" >> ~/.bashrc
source /workspace/bin/activate-env.sh
- name: documentation
command: |
gp sync-await setup
source /workspace/bin/activate-env.sh
cd docs
make html
cd build/html
python -m http.server 8000
ports:
- port: 8888
- port: 8000
vscode:
extensions:
- esbenp.prettier-vscode