Files
discord-rss-bot/.vscode/launch.json
Joakim Hellsén c3a11f55b0
All checks were successful
Test and build Docker image / docker (push) Successful in 1m31s
Update Docker healthcheck
2025-05-04 05:28:37 +02:00

22 lines
374 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"discord_rss_bot.main:app",
"--reload",
"--host",
"0.0.0.0",
"--port",
"5000",
],
"jinja": true,
"justMyCode": true
}
]
}