#!/bin/bash # Start Redis service redis-server start # Start PostgreSQL service postgresql start # Run migrations alembic upgrade head # Start the FastAPI app using Uvicorn uvicorn app:app --host 0.0.0.0 --port 7860