todo-api / phase-5 /run-local.sh
Nanny7's picture
feat: Phase 5 complete - Full stack AI Todo application with Dapr and Kafka
5c244a3
#!/bin/bash
# Run Phase 5 Backend Locally
set -e
echo "πŸš€ Starting Phase 5 Backend..."
cd backend
# Activate virtual environment (if exists)
if [ -d "venv" ]; then
source venv/bin/activate
fi
# Install dependencies
echo "πŸ“¦ Installing dependencies..."
pip install -q -r requirements.txt
# Start application
echo "🎯 Starting server on http://localhost:8000"
uvicorn src.main:app --host 0.0.0.0 --port 8000 --reload