Development: Add VS Code Devcontainer Configuration (#7041)

This commit is contained in:
phail 2024-06-28 00:13:55 +02:00 committed by GitHub
parent a64d457c30
commit fcc9847bc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 589 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
"name": "Paperless Development",
"dockerComposeFile": "docker-compose.devcontainer.sqlite-tika.yml",
"service": "paperless-development",
"workspaceFolder": "/usr/src/paperless/paperless-ngx",
"postCreateCommand": "/bin/bash -c pre-commit install && pipenv install --dev",
"customizations": {
"vscode": {
"extensions": [
"mhutchie.git-graph",
"ms-python.python"
]
}
},
"remoteUser": "paperless"
}