You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warn "PostgreSQL setup enabled but DB_NAME, DB_USER, or DB_PASSWORD is missing. Set DB_PASSWORD in .env or shipnode.conf."
95
+
warn "PostgreSQL setup enabled but required values are missing."
96
+
[ -z"$DB_NAME" ] && warn " Missing DB_NAME"
97
+
[ -z"$DB_USER" ] && warn " Missing DB_USER"
98
+
[ -z"$DB_PASSWORD" ] && warn " Missing DB_PASSWORD (set DB_PASSWORD in $REMOTE_PATH/shared/.env, shipnode.conf, or provide DATABASE_URL with a password)"
warn "MySQL setup enabled but DB_NAME, DB_USER, or DB_PASSWORD is missing. Set DB_PASSWORD in .env or shipnode.conf."
182
+
warn "MySQL setup enabled but required values are missing."
183
+
[ -z"$DB_NAME" ] && warn " Missing DB_NAME"
184
+
[ -z"$DB_USER" ] && warn " Missing DB_USER"
185
+
[ -z"$DB_PASSWORD" ] && warn " Missing DB_PASSWORD (set DB_PASSWORD in $REMOTE_PATH/shared/.env, shipnode.conf, or provide DATABASE_URL with a password)"
0 commit comments