Skip to content

Commit

Permalink
Merge branch 'vNext-Dev' into nhwkuhns/295-auto-delete-funct-take2
Browse files Browse the repository at this point in the history
  • Loading branch information
dayland authored Jan 4, 2024
2 parents e57a0cf + 3156f3f commit ce03fa8
Show file tree
Hide file tree
Showing 20 changed files with 612 additions and 227 deletions.
17 changes: 6 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,14 @@
"name": "Python: WebApp backend",
"type": "python",
"request": "launch",
"module": "flask",
"cwd": "${workspaceFolder}/app/backend",
"env": {
"FLASK_APP": "app.py",
"FLASK_ENV": "development",
"FLASK_DEBUG": "0"
},
"module": "uvicorn",
"args": [
"run",
"--no-debugger",
"--no-reload",
"-p 5000"
"app:app",
"--reload",
"--port",
"5000"
],
"cwd": "${workspaceFolder}/app/backend",
"console": "integratedTerminal",
"justMyCode": true,
"envFile": "${workspaceFolder}/scripts/environments/infrastructure.debug.env",
Expand Down
Loading

0 comments on commit ce03fa8

Please sign in to comment.