1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 12:59:36 +02:00

fix: update environment configuration and improve installer output messages

This commit is contained in:
Sean Morley 2025-06-04 16:59:41 -04:00
parent d6ab4e9f64
commit c0c91c8472
3 changed files with 11 additions and 11 deletions

View file

@ -27,7 +27,7 @@ BACKEND_PORT=8016
# Optional: disable registration # Optional: disable registration
# https://adventurelog.app/docs/configuration/disable_registration.html # https://adventurelog.app/docs/configuration/disable_registration.html
# DISABLE_REGISTRATION=True DISABLE_REGISTRATION=False
# DISABLE_REGISTRATION_MESSAGE=Registration is disabled for this instance of AdventureLog. # DISABLE_REGISTRATION_MESSAGE=Registration is disabled for this instance of AdventureLog.
# Optional: Use email # Optional: Use email

View file

@ -10,7 +10,7 @@ services:
- server - server
db: db:
image: postgis/postgis:15-3.3 image: postgis/postgis:16-3.5
container_name: adventurelog-db container_name: adventurelog-db
restart: unless-stopped restart: unless-stopped
env_file: .env env_file: .env

View file

@ -55,13 +55,13 @@ log_header() {
print_banner() { print_banner() {
cat << 'EOF' cat << 'EOF'
╔═════════════════════════════════════════════════════════════════════════ ╔═════════════════════════════════════════════════════════════════════════╗
║ ║
🌍 A D V E N T U R E L O G I N S T A L L E R ║ A D V E N T U R E L O G I N S T A L L E R
║ ║
║ The Ultimate Travel Companion The Ultimate Travel Companion ║
║ ║
╚══════════════════════════════════════════════════════════════════════╝ ╚═════════════════════════════════════════════════════════════════════════
EOF EOF
} }
@ -672,7 +672,7 @@ print_success_message() {
cat << 'EOF' cat << 'EOF'
╔════════════════════════════════════════════════════════════════════════════╗ ╔════════════════════════════════════════════════════════════════════════════╗
║ ║ ║ ║
🚀 A D V E N T U R E L O G I S R E A D Y F O R L A U N C H! ║ ║ A D V E N T U R E L O G I S R E A D Y F O R L A U N C H!
║ ║ ║ ║
╚════════════════════════════════════════════════════════════════════════════╝ ╚════════════════════════════════════════════════════════════════════════════╝
EOF EOF
@ -715,7 +715,7 @@ EOF
# Optional donation link # Optional donation link
echo -e "${BOLD}❤️ Enjoying AdventureLog?${NC}" echo -e "${BOLD}❤️ Enjoying AdventureLog?${NC}"
echo -e " Support future development: ${MAGENTA}https://buymeacoffee.com/seanmorley15${NC}" echo -e " Support future development: ${MAGENTA}https://seanmorley.com/sponsor${NC}"
echo "" echo ""
echo -e "${BOLD}🌍 Adventure awaits — your journey starts now with AdventureLog!${NC}" echo -e "${BOLD}🌍 Adventure awaits — your journey starts now with AdventureLog!${NC}"