Spaces:
Running
Running
Create start-temp.sh
Browse files- start-temp.sh +6 -0
start-temp.sh
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/sh
|
2 |
+
# Start the combined server
|
3 |
+
cd /app && npm run backend &
|
4 |
+
python3 /app/sudo/app.py &
|
5 |
+
caddy run --config /app/caddy/Caddyfile &
|
6 |
+
wait
|