Skip to content

Instantly share code, notes, and snippets.

@brettkromkamp
Created May 1, 2024 15:43
Show Gist options
  • Save brettkromkamp/7b4744396b2b39b0d63d27d3016fb098 to your computer and use it in GitHub Desktop.
Save brettkromkamp/7b4744396b2b39b0d63d27d3016fb098 to your computer and use it in GitHub Desktop.
Visual Studio Code FastAPI launch configuration
{
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"backend.src.contextualise.main:app",
"--host",
"0.0.0.0",
"--port",
"8000",
"--reload"
],
"jinja": true
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment