File size: 208 Bytes
857939a
711c2ee
 
fef0c2e
 
711c2ee
1
2
3
4
5
6
#!/bin/sh
# Start frontend in background
node frontend/server.js &
# Start backend from /app directory so it can find generated_images
cd /app
python -m uvicorn backend.app.main:app --host 0.0.0.0 --port 8000