skyline-apiserver/.vscode/launch.json
Wu Wenxiang 1fc924798f doc: add skyline community icons
1. add skyline community icons
2. add vscode debugging tips
3. add quotas in skyline.yaml.sample
4. add flake8/bandit/pycodestyle plugins

Change-Id: Ib63c12c613c4f6cb24879324b6445cedc268724b
2022-05-04 07:15:31 -07:00

23 lines
732 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"--reload",
"--reload-dir", "libs/skyline-apiserver/skyline_apiserver",
"--port", "28000",
"--log-level", "debug",
"skyline_apiserver.main:app"
],
"jinja": true,
"justMyCode": true
}
]
}