From 7e1ce84c0afe1414a72b9eb01808cf9061f4f485 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Tue, 13 May 2025 18:42:34 +0000 Subject: [PATCH] Add startup script for application deployment generated with BackendIM... (backend.im) --- startup.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 startup.sh diff --git a/startup.sh b/startup.sh new file mode 100644 index 0000000..db2dec1 --- /dev/null +++ b/startup.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Install all dependencies from requirements.txt +echo "Installing dependencies..." +pip install -r requirements.txt + +# Start the FastAPI application with uvicorn +echo "Starting application..." +uvicorn main:app --host 0.0.0.0 --port 8000 --reload \ No newline at end of file