.codesandbox/tasks.json を追加

This commit is contained in:
yuzu02 2025-02-24 10:38:47 -03:00
commit ed8079500a

16
.codesandbox/tasks.json Normal file
View 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
}
}
}