1edce5088c
as per title
46 lines
1.3 KiB
Bash
Executable File
46 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
setup_and_migrate_db() {
|
|
if [ "${DISABLE_DB_MIGRATIONS}" = "true" ]; then
|
|
echo "Database setup and migrations are disabled, skipping..."
|
|
return
|
|
fi
|
|
|
|
echo "Running database setup and migrations..."
|
|
|
|
# Run setup and migration scripts
|
|
has_schema=$(psql -tAc "SELECT EXISTS (SELECT 1 FROM information_schema.schemata WHERE schema_name = 'core')" ${PG_DATABASE_URL})
|
|
if [ "$has_schema" = "f" ]; then
|
|
echo "Database appears to be empty, running migrations."
|
|
NODE_OPTIONS="--max-old-space-size=1500" tsx ./scripts/setup-db.ts
|
|
yarn database:migrate:prod
|
|
fi
|
|
|
|
yarn command:prod cache:flush
|
|
yarn command:prod upgrade
|
|
yarn command:prod cache:flush
|
|
|
|
echo "Successfully migrated DB!"
|
|
}
|
|
|
|
register_background_jobs() {
|
|
if [ "${DISABLE_CRON_JOBS_REGISTRATION}" = "true" ]; then
|
|
echo "Cron job registration is disabled, skipping..."
|
|
return
|
|
fi
|
|
|
|
echo "Registering background sync jobs..."
|
|
if yarn command:prod cron:register:all; then
|
|
echo "Successfully registered all background sync jobs!"
|
|
else
|
|
echo "Warning: Failed to register background jobs, but continuing startup..."
|
|
fi
|
|
}
|
|
|
|
setup_and_migrate_db
|
|
register_background_jobs
|
|
|
|
# Continue with the original Docker command
|
|
exec "$@"
|