-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
36 lines (32 loc) · 1.12 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
image: gitpod/workspace-full
# Commands that will run on workspace start
tasks:
- command: |
pip install --upgrade pip;
pip install -r "requirements.txt";
python -m spacy download de_core_news_sm;
python -m spacy download en_core_web_sm;
python -m spacy download es_core_news_sm;
python -m spacy download fr_core_news_sm;
python -m spacy download it_core_news_sm;
python -m spacy download nl_core_news_sm;
python -m spacy download nb_core_news_sm;
python -m spacy download sv_core_news_sm;
python -m spacy download pl_core_news_sm;
# Polish is experimental for Czech..
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
ports:
- name: Preview
port: 8000
onOpen: open-preview
# Install necessary packages
#image:
#file: .gitpod.dockerfile
vscode:
extensions:
- ms-toolsai.jupyter
- ms-python.python
- ms-toolsai.jupyter-renderers
- ms-toolsai.jupyter-keymap
- ms-toolsai.vscode-jupyter-cell-tags
- ms-toolsai.vscode-jupyter-slideshow