mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
14 lines
234 B
Bash
14 lines
234 B
Bash
#!/bin/bash
|
|
|
|
if [ -n "$TZ" ]; then
|
|
echo "[INFO] Application timezone set to $TZ (environment only)"
|
|
export TZ="$TZ"
|
|
else
|
|
echo "[WARN] No TZ provided, using default container timezone"
|
|
fi
|
|
|
|
node server/server.js
|
|
|
|
exec "$@"
|
|
|