mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-07-30 23:38:02 -04:00
- 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.
16 lines
220 B
Bash
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 "$@"
|