Files
bookings_app/.devcontainer/devcontainer.json
2024-08-22 20:25:59 +01:00

22 lines
576 B
JSON

i{
"name": "Django DevContainer",
"dockerComposeFile": "docker-compose.yml",
"service": "web",
"workspaceFolder": "/workspace",
"settings": {
"terminal.integrated.defaultProfile.linux": "/bin/bash",
"python.pythonPath": "/usr/local/bin/python"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.flake8"
],
"postCreateCommand": "pip install -r requirements.txt",
"forwardPorts": [8000],
"remoteEnv": {
"DJANGO_SETTINGS_MODULE": "myproject.settings"
}
}