-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathdevcontainer.json
34 lines (34 loc) · 1.01 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
{
"name": "Python 3.9+ Development Container",
"dockerComposeFile": [
"docker-compose.devcontainer.yml"
],
"containerEnv": {
"POSTGRES_PASSWORD": "postgres",
"SQLALCHEMY_HOST": "pgmq-postgres"
},
"service": "tembo-pgmq-python",
"mounts": [
"source=${localWorkspaceFolder}/tembo-pgmq-python,target=/workspace/tembo-pgmq-python,type=bind,consistency=cached"
],
"workspaceFolder": "/workspace/tembo-pgmq-python",
"postCreateCommand": "poetry install --all-extras",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
]
},
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash"
}
}
}
},
"remoteUser": "vscode"
}