17 lines
618 B
JSON
17 lines
618 B
JSON
{
|
|
// IntelliSense を使用して利用可能な属性を学べます。
|
|
// 既存の属性の説明をホバーして表示します。
|
|
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch AP Server(FastAPI)",
|
|
"type": "python",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"args": ["src.main:app","--reload", "--no-server-header"],
|
|
"justMyCode": true,
|
|
"envFile": "${workspaceFolder}/.env"
|
|
}
|
|
]
|
|
} |