AndesOps-AI / start.sh
Álvaro Valenzuela Valdes
fix: Create missing models and fix python module discovery
6465c28
raw
history blame
281 Bytes
#!/bin/bash
# Start Backend
echo "Starting Backend..."
cd /app/backend && uvicorn app.main:app --host 0.0.0.0 --port 8000 &
# Start Frontend
echo "Starting Frontend..."
cd /app/frontend && npm run start -- -p 3000 &
# Start Nginx
echo "Starting Nginx..."
nginx -g "daemon off;"