forked from jisaacstone/odata-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
21 lines (18 loc) · 825 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
image:
file: .gitpod.Dockerfile
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/
# ports:
# - port: 3000
# onOpen: open-preview
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
tasks:
- command: >
echo -ne "Creating virtualenv under 'venv/' ...\r" && python3 -m venv venv && echo "Creating virtualenv under 'venv/' ... done";
source venv/bin/activate;
pip install -r requirements.txt -r requirements-test.txt -r requirements-dev.txt
pip install -e .
- command: >
npm install -g --save remark-cli remark-preset-lint-recommended
vscode:
extensions:
- littlefoxteam.vscode-python-test-adapter@0.3.16:tZ/6xOSSdKUaq6JCUVkD+A==