From ed8079500a73403ef05eaa653731e4eb0627c927 Mon Sep 17 00:00:00 2001 From: yuzu02 Date: Mon, 24 Feb 2025 10:38:47 -0300 Subject: [PATCH] =?UTF-8?q?.codesandbox/tasks.json=20=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .codesandbox/tasks.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .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