12 lines
236 B
Bash
Executable File
12 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# Activate virtual environment
|
|
source .venv/bin/activate
|
|
|
|
# Install dependencies
|
|
pip install -q -r requirements.txt
|
|
|
|
# Start uvicorn with auto-reload
|
|
uvicorn app:app --host 0.0.0.0 --port 8000 --reload |