forked from goat-community/goat-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
44 lines (44 loc) · 1.29 KB
/
.devcontainer.json
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
// See https://aka.ms/vscode-remote/containers for the
// documentation about the devcontainer.json format
{
"name": "GOAT Routing DevContainer",
"dockerComposeFile": [
"docker-compose.yml"
],
"service": "api",
"workspaceFolder": "/app",
"shutdownAction": "none",
"mounts": [
"source=${localWorkspaceFolder}/../..,target=/goat,type=bind,consistency=cached"
],
"customizations": {
"vscode": {
"extensions": [
"github.copilot",
"ms-python.python",
"ms-vscode.cpptools",
"twxs.cmake",
"ms-vscode.cmake-tools",
"njpwerner.autodocstring",
"donjayamanne.githistory",
"ms-python.black-formatter",
"charliermarsh.ruff",
"github.copilot-nightly"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
}
}
}
},
"runServices": [
"api",
"rabbitmq",
"redis",
"celery-worker"
]
}