mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-06 23:05:42 +01:00
- Changed the bash interpreter path from /usr/bin/bash to /bin/bash in multiple init scripts for consistency and compatibility. - Added PowerShell working directory configuration in the workspace file to streamline development environment setup.
42 lines
777 B
Text
42 lines
777 B
Text
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
},
|
|
{
|
|
"path": "./src",
|
|
"name": "Backend"
|
|
},
|
|
{
|
|
"path": "./src-ui",
|
|
"name": "Frontend"
|
|
},
|
|
{
|
|
"path": "./.github",
|
|
"name": "CI/CD"
|
|
},
|
|
{
|
|
"path": "./docs",
|
|
"name": "Documentation"
|
|
}
|
|
|
|
],
|
|
"settings": {
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.mypy_cache": true,
|
|
"**/.ruff_cache": true,
|
|
"**/.pytest_cache": true,
|
|
"**/.idea": true,
|
|
"**/.venv": true,
|
|
"**/.coverage": true,
|
|
"**/coverage.json": true
|
|
},
|
|
"python.defaultInterpreterPath": ".venv/bin/python3",
|
|
"powershell.cwd": "IntelliDocs-ngx",
|
|
},
|
|
"extensions": {
|
|
"recommendations": ["ms-python.python", "charliermarsh.ruff", "editorconfig.editorconfig"],
|
|
"unwantedRecommendations": ["ms-python.black-formatter"]
|
|
}
|
|
}
|