16 lines
No EOL
263 B
JSON
16 lines
No EOL
263 B
JSON
{
|
|
"setupTasks": [
|
|
{
|
|
"name":"Install Dependencies",
|
|
"command": "pip install -r requirements.txt"
|
|
}
|
|
],
|
|
|
|
"tasks":{
|
|
"start":{
|
|
"name":"start",
|
|
"command": "uvicorn --host 0.0.0.0 --port 8080 main:app",
|
|
"runAtStart":true
|
|
}
|
|
}
|
|
} |