Gurucool_Test / start.sh
ashwinR's picture
Update start.sh
e027829
raw
history blame
221 Bytes
#!/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