.codesandbox/tasks.json を追加
This commit is contained in:
commit
ed8079500a
1 changed files with 16 additions and 0 deletions
16
.codesandbox/tasks.json
Normal file
16
.codesandbox/tasks.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"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
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue