Skip to content

Commit

Permalink
Add launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchop committed Mar 8, 2025
1 parent 8fa0a59 commit 56edfa0
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,17 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
"type": "python",
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "core.web.webapp",
"OAUTHLIB_INSECURE_TRANSPORT": "1"
},
"module": "uvicorn",
"args": [
"run",
"--no-debugger",
"--no-reload",
"core.web.webapp:app",
"--reload",
"--host",
"0.0.0.0"
],
"jinja": true,
"justMyCode": false
"jinja": true
}
]
}

0 comments on commit 56edfa0

Please sign in to comment.