add devcontainer for vscode

This commit is contained in:
Philipp
2023-12-12 22:04:29 +00:00
parent e3496d0485
commit 5d17df3a18
7 changed files with 404 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "paperless backend",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/src/manage.py",
"console": "integratedTerminal",
"justMyCode": true,
"args": ["runserver"],
"django": true
}
]
}