From c0c91c84729e86a7b0fc675f47a9f4fbf626ea95 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Wed, 4 Jun 2025 16:59:41 -0400 Subject: [PATCH] fix: update environment configuration and improve installer output messages --- .env.example | 2 +- docker-compose.yml | 2 +- install_adventurelog.sh | 18 +++++++++--------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.env.example b/.env.example index 5edd03e..36db246 100644 --- a/.env.example +++ b/.env.example @@ -27,7 +27,7 @@ BACKEND_PORT=8016 # Optional: disable registration # 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. # Optional: Use email diff --git a/docker-compose.yml b/docker-compose.yml index 2d04ee9..d3765e3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: - server db: - image: postgis/postgis:15-3.3 + image: postgis/postgis:16-3.5 container_name: adventurelog-db restart: unless-stopped env_file: .env diff --git a/install_adventurelog.sh b/install_adventurelog.sh index 0e66f98..06bc892 100755 --- a/install_adventurelog.sh +++ b/install_adventurelog.sh @@ -55,13 +55,13 @@ log_header() { print_banner() { cat << 'EOF' -╔══════════════════════════════════════════════════════════════════════════╗ -║ ║ -║ 🌍 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 ║ -║ ║ -╚══════════════════════════════════════════════════════════════════════╝ +╔═════════════════════════════════════════════════════════════════════════╗ +║ ║ +║ 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 ║ +║ ║ +╚═════════════════════════════════════════════════════════════════════════╝ EOF } @@ -672,7 +672,7 @@ print_success_message() { 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 @@ -715,7 +715,7 @@ EOF # Optional donation link 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 -e "${BOLD}🌍 Adventure awaits — your journey starts now with AdventureLog!${NC}"