mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-15 11:50:34 +01:00
21 lines
470 B
Bash
21 lines
470 B
Bash
#!/bin/sh
|
||
|
||
# Copy default logo to the frontend public folder if it doesn't exist
|
||
cp -rn /tmp/img/* /opt/app/frontend/public/img
|
||
|
||
# Start Caddy
|
||
if [ "$TRUST_PROXY" = "true" ]; then
|
||
caddy start --config /etc/caddy/Caddyfile.trust-proxy &
|
||
else
|
||
caddy start --config /etc/caddy/Caddyfile &
|
||
fi
|
||
|
||
# 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
|