mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-19 05:23:14 +02:00
10 lines
242 B
Bash
10 lines
242 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# Start Caddy
|
||
|
|
caddy start --config /etc/caddy/Caddyfile &
|
||
|
|
# Run the frontend server
|
||
|
|
PORT=3333 HOSTNAME=0.0.0.0 node frontend/server.js &
|
||
|
|
# Run the backend server
|
||
|
|
cd backend && npm run prod
|
||
|
|
# Wait for all processes to finish
|
||
|
|
wait -n
|