cde68dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash set -e # Start the Next.js application npm start & # Start the FastAPI backend uvicorn main:app --host 0.0.0.0 --port 8000 # Wait for any process to exit wait -n # Exit with status of process that exited first exit $?