File size: 268 Bytes
32bc095
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# Activate virtual environment
if [ -d ".venv" ]; then
    source .venv/bin/activate
elif [ -d "venv" ]; then
    source venv/bin/activate
fi

# Run FastAPI server
echo "Starting Backend Server..."
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000