Automated Action 7e1ce84c0a Add startup script for application deployment
generated with BackendIM... (backend.im)
2025-05-13 18:42:34 +00:00

9 lines
257 B
Bash

#!/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