mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 15:53:04 +03:00
16 lines
407 B
Bash
16 lines
407 B
Bash
echo "Starting frontend..."
|
|
node frontend/build &
|
|
|
|
echo "Starting backend..."
|
|
cd backend && ./pocket-id-backend &
|
|
|
|
echo "Starting Caddy..."
|
|
|
|
# Check if TRUST_PROXY is set to true and use the appropriate Caddyfile
|
|
if [ "$TRUST_PROXY" = "true" ]; then
|
|
caddy start --adapter caddyfile --config /etc/caddy/Caddyfile.trust-proxy &
|
|
else
|
|
caddy start --adapter caddyfile --config /etc/caddy/Caddyfile &
|
|
fi
|
|
|
|
wait |