File size: 221 Bytes
5ce62ba
7e56007
 
 
 
 
 
 
5ce62ba
 
 
 
7e56007
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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