|
a |
|
b/.devcontainer.json |
|
|
1 |
{ |
|
|
2 |
"name": "nbdev_template-codespaces", |
|
|
3 |
"dockerComposeFile": "docker-compose.yml", |
|
|
4 |
"service": "watcher", |
|
|
5 |
"settings": {"terminal.integrated.shell.linux": "/bin/bash"}, |
|
|
6 |
"mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ], |
|
|
7 |
"forwardPorts": [4000, 8080], |
|
|
8 |
"appPort": [4000, 8080], |
|
|
9 |
"extensions": ["ms-python.python", |
|
|
10 |
"ms-azuretools.vscode-docker"], |
|
|
11 |
"runServices": ["notebook", "jekyll", "watcher"], |
|
|
12 |
"postStartCommand": "pip install -e ." |
|
|
13 |
} |