Files
AdventureLog/docker/aio/entrypoint.sh
Sean Morley cbe58f1160 Remove deprecated backup and deployment scripts
- Deleted the backup.sh and deploy.sh scripts as they are no longer needed.
- Updated documentation to reflect the removal of these scripts and their functionalities.
- Cleaned up related GitHub Actions workflows to remove references to the deleted scripts.
2026-06-07 21:39:06 -04:00

16 lines
220 B
Bash

#!/bin/bash
set -euo pipefail
source /aio/env-setup.sh
cd /code
source /code/scripts/entrypoint-common.sh
wait_for_postgres
run_migrations
create_superuser_if_needed
run_download_countries
finalize_startup
exec "$@"