commit ed8079500a73403ef05eaa653731e4eb0627c927 Author: yuzu02 Date: Mon Feb 24 10:38:47 2025 -0300 .codesandbox/tasks.json を追加 diff --git a/.codesandbox/tasks.json b/.codesandbox/tasks.json new file mode 100644 index 0000000..86a0459 --- /dev/null +++ b/.codesandbox/tasks.json @@ -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 + } + } +} \ No newline at end of file