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
23 lines
732 B
JSON
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
|
|
}
|
|
]
|
|
} |