Add startup script for application deployment

generated with BackendIM... (backend.im)
This commit is contained in:
Automated Action 2025-05-13 18:42:34 +00:00
parent ddf8c30d23
commit 7e1ce84c0a

9
startup.sh Normal file
View File

@ -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