-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.sh
More file actions
39 lines (33 loc) · 911 Bytes
/
start.sh
File metadata and controls
39 lines (33 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# Start backend
echo "Starting backend..."
cd /app/backend
uv run app.py &
BACKEND_PID=$!
echo "Backend started with PID: $BACKEND_PID"
# Wait for backend to be ready (port 5000)
echo "Waiting for backend (port 5000) to be ready..."
while ! nc -z 127.0.0.1 5000; do
sleep 0.1
done
echo "Backend is ready."
# Start frontend
echo "Starting frontend..."
cd /app/frontend
npx serve@latest -l 3001 out &
FRONTEND_PID=$!
echo "Frontend started with PID: $FRONTEND_PID"
# Wait for frontend to be ready (port 3001)
echo "Waiting for frontend (port 3001) to be ready..."
while ! nc -z 127.0.0.1 3001; do
sleep 0.1
done
echo "Frontend is ready."
# Start Nginx
echo "Starting Nginx..."
nginx -g "daemon off;" &
NGINX_PID=$!
echo "Nginx started with PID: $NGINX_PID"
# Wait for all background processes (backend, frontend, Nginx)
wait $BACKEND_PID $FRONTEND_PID $NGINX_PID
echo "All services exited."