{ "version": "0.2.0", "configurations": [ { "name": "{{ project_name }}: FastAPI", "type": "debugpy", "request": "launch", "module": "uvicorn", "args": [ "main:app", "--reload", "--host", "127.0.0.1", "--port", "8000" ], "cwd": "${workspaceFolder}", "env": { "APP_ENV": "dev", "APP_ENV_DIR": "${workspaceFolder}" }, "jinja": true, "justMyCode": true } ] }