File size: 243 Bytes
8514019
 
9dd8976
 
 
 
 
8514019
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

# Load environment variables
if [ -f .env ]; then
    export $(cat .env | grep -v '^#' | xargs)
fi

# Run database migrations
cd app
alembic upgrade head

# Start the application
cd ..
uvicorn main:app --host 0.0.0.0 --port $PORT