diff --git a/.github/.docker-compose-database.yml b/.github/.docker-compose-database.yml index aa187bd6..19d54f43 100644 --- a/.github/.docker-compose-database.yml +++ b/.github/.docker-compose-database.yml @@ -1,7 +1,7 @@ services: db: image: postgis/postgis:15-3.3 - container_name: adventurelog-db + container_name: voyage-db restart: unless-stopped ports: - "127.0.0.1:5432:5432" diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index bb6f94bd..1d88cd7a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -23,7 +23,7 @@ Steps to reproduce the behavior: ## ✅ Expected Behavior -What did you expect AdventureLog to do? +What did you expect Voyage to do? ## 📸 Screenshots / Logs @@ -34,7 +34,7 @@ What did you expect AdventureLog to do? - **Platform:** (Docker, Synology, Proxmox, TrueNAS, Unraid, etc.) - **Install Method:** (Docker Compose, Quick Install Script, Manual, etc.) -- **AdventureLog Version:** (e.g., v0.12.0) +- **Voyage Version:** (e.g., v0.12.0) - **Reverse Proxy:** (e.g., Nginx, Traefik, Caddy, etc. or None) If using Docker and the issue is related to the container, it may be helpful to include your `docker-compose.yml` or relevant variables below. @@ -46,4 +46,4 @@ Anything else that might be useful (custom configuration, network setup, databas --- -Thank you for taking the time to report this issue! We appreciate your help in making AdventureLog better. We’ll look into it as soon as we can. 🙌 +Thank you for taking the time to report this issue! We appreciate your help in making Voyage better. We’ll look into it as soon as we can. 🙌 diff --git a/.github/ISSUE_TEMPLATE/deployment-issue.md b/.github/ISSUE_TEMPLATE/deployment-issue.md index a926ed68..f474aeeb 100644 --- a/.github/ISSUE_TEMPLATE/deployment-issue.md +++ b/.github/ISSUE_TEMPLATE/deployment-issue.md @@ -1,6 +1,6 @@ --- name: Deployment Issue -about: Request help deploying AdventureLog. For faster support, please use our Discord community! +about: Request help deploying Voyage. For faster support, please use our Discord community! title: "[DEPLOYMENT] " labels: deployment assignees: "" diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 20ef0d38..5e4a3037 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,6 +1,6 @@ --- name: Feature request -about: Suggest a new idea, feature, or improvement for AdventureLog +about: Suggest a new idea, feature, or improvement for Voyage title: "[REQUEST] " labels: enhancement assignees: "" @@ -20,7 +20,7 @@ Is your request related to a specific problem? ## 🛠️ Proposed Solution Describe the solution you’d like. -What should AdventureLog do differently? +What should Voyage do differently? ## 🔄 Alternatives Considered @@ -36,4 +36,4 @@ Any other details that might help us understand the request (use cases, user sto --- -✨ Thanks for suggesting improvements to AdventureLog! Your ideas help shape the future of the project. +✨ Thanks for suggesting improvements to Voyage! Your ideas help shape the future of the project. diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 71251d80..a1d90897 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -1,6 +1,6 @@ -# AdventureLog Development Instructions +# Voyage Development Instructions -AdventureLog is a self-hosted travel companion web application built with SvelteKit frontend and Django backend, deployed via Docker. +Voyage is a self-hosted travel companion web application built with SvelteKit frontend and Django backend, deployed via Docker. **ALWAYS follow these instructions first and fallback to search or bash commands only when you encounter unexpected information that does not match the info here.** @@ -76,7 +76,7 @@ Run these commands in order: ### Repository Structure ``` -AdventureLog/ +Voyage/ ├── frontend/ # SvelteKit web application │ ├── src/ # Source code │ ├── package.json # Node.js dependencies and scripts @@ -87,7 +87,7 @@ AdventureLog/ │ └── requirements.txt # Python dependencies ├── docker-compose.yml # Main deployment configuration ├── .env.example # Environment template -└── install_adventurelog.sh # Production installer +└── install_voyage.sh # Production installer ``` ### Key Scripts and Files @@ -98,7 +98,7 @@ AdventureLog/ ### Development vs Production - **Development**: Use `docker compose up -d` with .env file -- **Production**: Use `./install_adventurelog.sh` installer script +- **Production**: Use `./install_voyage.sh` installer script - **CI/CD**: GitHub Actions in `.github/workflows/` handle testing and deployment ### Common Error Patterns diff --git a/.github/workflows/backend-beta.yml b/.github/workflows/backend-beta.yml index a9a80979..d6ba591a 100644 --- a/.github/workflows/backend-beta.yml +++ b/.github/workflows/backend-beta.yml @@ -12,7 +12,7 @@ on: - "backend/**" env: - IMAGE_NAME: "adventurelog-backend" + IMAGE_NAME: "voyage-backend" jobs: upload: diff --git a/.github/workflows/backend-latest.yml b/.github/workflows/backend-latest.yml index dd3b9ce1..381b235a 100644 --- a/.github/workflows/backend-latest.yml +++ b/.github/workflows/backend-latest.yml @@ -12,7 +12,7 @@ on: - "backend/**" env: - IMAGE_NAME: "adventurelog-backend" + IMAGE_NAME: "voyage-backend" jobs: upload: diff --git a/.github/workflows/backend-release.yml b/.github/workflows/backend-release.yml index ff1919db..48b890a1 100644 --- a/.github/workflows/backend-release.yml +++ b/.github/workflows/backend-release.yml @@ -9,7 +9,7 @@ on: types: [released] env: - IMAGE_NAME: "adventurelog-backend" + IMAGE_NAME: "voyage-backend" jobs: upload: diff --git a/.github/workflows/cdn-beta.yml b/.github/workflows/cdn-beta.yml index d229b606..625fcf66 100644 --- a/.github/workflows/cdn-beta.yml +++ b/.github/workflows/cdn-beta.yml @@ -12,7 +12,7 @@ on: - "cdn/**" env: - IMAGE_NAME: "adventurelog-cdn" + IMAGE_NAME: "voyage-cdn" jobs: upload: diff --git a/.github/workflows/cdn-latest.yml b/.github/workflows/cdn-latest.yml index 65a88dae..f37abc54 100644 --- a/.github/workflows/cdn-latest.yml +++ b/.github/workflows/cdn-latest.yml @@ -12,7 +12,7 @@ on: - "cdn/**" env: - IMAGE_NAME: "adventurelog-cdn" + IMAGE_NAME: "voyage-cdn" jobs: upload: diff --git a/.github/workflows/cdn-release.yml b/.github/workflows/cdn-release.yml index 11cb258a..88506038 100644 --- a/.github/workflows/cdn-release.yml +++ b/.github/workflows/cdn-release.yml @@ -9,7 +9,7 @@ on: types: [released] env: - IMAGE_NAME: "adventurelog-cdn" + IMAGE_NAME: "voyage-cdn" jobs: upload: diff --git a/.github/workflows/frontend-beta.yml b/.github/workflows/frontend-beta.yml index 4b237367..51f4963b 100644 --- a/.github/workflows/frontend-beta.yml +++ b/.github/workflows/frontend-beta.yml @@ -12,7 +12,7 @@ on: - "frontend/**" env: - IMAGE_NAME: "adventurelog-frontend" + IMAGE_NAME: "voyage-frontend" jobs: upload: diff --git a/.github/workflows/frontend-latest.yml b/.github/workflows/frontend-latest.yml index dcb5e8c9..2822b760 100644 --- a/.github/workflows/frontend-latest.yml +++ b/.github/workflows/frontend-latest.yml @@ -12,7 +12,7 @@ on: - "frontend/**" env: - IMAGE_NAME: "adventurelog-frontend" + IMAGE_NAME: "voyage-frontend" jobs: upload: diff --git a/.github/workflows/frontend-release.yml b/.github/workflows/frontend-release.yml index 3bb33ce8..542edc7d 100644 --- a/.github/workflows/frontend-release.yml +++ b/.github/workflows/frontend-release.yml @@ -9,7 +9,7 @@ on: types: [released] env: - IMAGE_NAME: "adventurelog-frontend" + IMAGE_NAME: "voyage-frontend" jobs: upload: diff --git a/.github/workflows/trivy_security_scans.yml b/.github/workflows/trivy_security_scans.yml index 3e3d01f5..0d7be0d7 100644 --- a/.github/workflows/trivy_security_scans.yml +++ b/.github/workflows/trivy_security_scans.yml @@ -57,15 +57,15 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build backend Docker image - run: docker build -t adventurelog-backend ./backend + run: docker build -t voyage-backend ./backend - name: Build frontend Docker image - run: docker build -t adventurelog-frontend ./frontend + run: docker build -t voyage-frontend ./frontend - name: Scan backend Docker image with Trivy uses: aquasecurity/trivy-action@master with: - image-ref: adventurelog-backend + image-ref: voyage-backend format: table exit-code: 1 ignore-unfixed: true @@ -75,7 +75,7 @@ jobs: - name: Scan frontend Docker image with Trivy uses: aquasecurity/trivy-action@master with: - image-ref: adventurelog-frontend + image-ref: voyage-frontend format: table exit-code: 1 ignore-unfixed: true diff --git a/.megamemory/knowledge.db b/.megamemory/knowledge.db new file mode 100644 index 00000000..0749e756 Binary files /dev/null and b/.megamemory/knowledge.db differ diff --git a/.megamemory/knowledge.db-shm b/.megamemory/knowledge.db-shm new file mode 100644 index 00000000..fe9ac284 Binary files /dev/null and b/.megamemory/knowledge.db-shm differ diff --git a/.megamemory/knowledge.db-wal b/.megamemory/knowledge.db-wal new file mode 100644 index 00000000..e69de29b diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b6013008..3794bddc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ -# Contributing to AdventureLog +# Contributing to Voyage -We’re excited to have you contribute to AdventureLog! To ensure that this community remains welcoming and productive for all users and developers, please follow this simple Code of Conduct. +We’re excited to have you contribute to Voyage! To ensure that this community remains welcoming and productive for all users and developers, please follow this simple Code of Conduct. ## Pull Request Process @@ -14,7 +14,7 @@ We’re excited to have you contribute to AdventureLog! To ensure that this comm ### Our Pledge -At AdventureLog, we are committed to creating a community that fosters adventure, exploration, and innovation. We encourage diverse participation and strive to maintain a space where everyone feels welcome to contribute, regardless of their background or experience level. We ask that you contribute with respect and kindness, making sure to prioritize collaboration and mutual growth. +At Voyage, we are committed to creating a community that fosters adventure, exploration, and innovation. We encourage diverse participation and strive to maintain a space where everyone feels welcome to contribute, regardless of their background or experience level. We ask that you contribute with respect and kindness, making sure to prioritize collaboration and mutual growth. ### Our Standards @@ -23,7 +23,7 @@ In order to maintain a positive environment, we encourage the following behavior - **Inclusivity**: Use welcoming and inclusive language that fosters collaboration across all perspectives and experiences. - **Respect**: Respect differing opinions and engage with empathy, understanding that each person’s perspective is valuable. - **Constructive Feedback**: Offer feedback that helps improve the project and allows contributors to grow from it. -- **Adventure Spirit**: Bring the same sense of curiosity, discovery, and positivity that drives AdventureLog into all interactions with the community. +- **Adventure Spirit**: Bring the same sense of curiosity, discovery, and positivity that drives Voyage into all interactions with the community. Examples of unacceptable behavior include: @@ -35,18 +35,18 @@ Examples of unacceptable behavior include: ### Our Responsibilities -As maintainers of AdventureLog, we are committed to enforcing this Code of Conduct and taking corrective action when necessary. This may involve moderating comments, pulling code, or banning users who engage in harmful behaviors. +As maintainers of Voyage, we are committed to enforcing this Code of Conduct and taking corrective action when necessary. This may involve moderating comments, pulling code, or banning users who engage in harmful behaviors. We strive to foster a community that balances open collaboration with respect for all contributors. ### Scope -This Code of Conduct applies in all spaces related to AdventureLog. This includes our GitHub repository, discussions, documentation, social media accounts, and events—both online and in person. +This Code of Conduct applies in all spaces related to Voyage. This includes our GitHub repository, discussions, documentation, social media accounts, and events—both online and in person. ### Enforcement -If you experience or witness unacceptable behavior, please report it to the project team at `contact@adventurelog.app`. All reports will be confidential and handled swiftly. The maintainers will investigate the issue and take appropriate action as needed. +If you experience or witness unacceptable behavior, please report it to the project team at `contact@voyage.app`. All reports will be confidential and handled swiftly. The maintainers will investigate the issue and take appropriate action as needed. ### Attribution -This Code of Conduct is inspired by the [Contributor Covenant](http://contributor-covenant.org), version 1.4, and adapted to fit the unique spirit of AdventureLog. +This Code of Conduct is inspired by the [Contributor Covenant](http://contributor-covenant.org), version 1.4, and adapted to fit the unique spirit of Voyage. diff --git a/README.md b/README.md index 18d2b52a..a6ba053e 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,15 @@
- logo -

AdventureLog

+ logo +

Voyage

The ultimate travel companion for the modern-day explorer.

- -

- View Demo - · - Documentation - · - Discord - · - Support 💖 -

+ +

+ A fork of AdventureLog by Sean Morley. +


@@ -39,9 +33,11 @@ ## ⭐ About the Project -Starting from a simple idea of tracking travel locations, AdventureLog has grown into a full-fledged travel companion. With AdventureLog, you can log your adventures, keep track of where you've been on the world map, plan your next trip collaboratively, and share your experiences with friends and family. +> **Voyage is a fork of [AdventureLog](https://github.com/seanmorley15/AdventureLog)**, the open-source travel companion created by [Sean Morley](https://seanmorley.com). This fork builds on top of AdventureLog's foundation to make additional changes and improvements. -AdventureLog was created to solve a problem: the lack of a modern, open-source, user-friendly travel companion. Many existing travel apps are either too complex, too expensive, or too closed-off to be useful for the average traveler. AdventureLog aims to be the opposite: simple, beautiful, and open to everyone. +Starting from a simple idea of tracking travel locations, Voyage is a full-fledged travel companion. With Voyage, you can log your adventures, keep track of where you've been on the world map, plan your next trip collaboratively, and share your experiences with friends and family. + +Voyage aims to be simple, beautiful, and open to everyone — inheriting AdventureLog's commitment to being a modern, open-source, user-friendly alternative to overly complex or expensive travel apps. @@ -105,21 +101,21 @@ AdventureLog was created to solve a problem: the lack of a modern, open-source, - Itineraries include many planning features like flight information, notes, checklists, and links to external resources. - Itineraries can be shared with friends and family for collaborative planning. - **Share Your Experiences** 📸: Share your adventures with friends and family and collaborate on trips together. - - Locations and itineraries can be shared via a public link or directly with other AdventureLog users. + - Locations and itineraries can be shared via a public link or directly with other Voyage users. - Collaborators can view and edit shared itineraries (collections), making planning a breeze. ## 🧭 Roadmap -The AdventureLog Roadmap can be found [here](https://github.com/users/seanmorley15/projects/5) +The Voyage Roadmap can be found [here](https://github.com/users/seanmorley15/projects/5) ## 👋 Contributing - - + + Contributions are always welcome! @@ -128,10 +124,10 @@ See `contributing.md` for ways to get started. ### Translation -AdventureLog is available on [Weblate](https://hosted.weblate.org/projects/adventurelog/). If you would like to help translate AdventureLog into your language, please visit the link and contribute! +Voyage is available on [Weblate](https://hosted.weblate.org/projects/voyage/). If you would like to help translate Voyage into your language, please visit the link and contribute! - -Translation status + +Translation status @@ -146,12 +142,13 @@ Distributed under the GNU General Public License v3.0. See `LICENSE` for more in Sean Morley - [website](https://seanmorley.com) -Hi! I'm Sean, the creator of AdventureLog. I'm a college student and software developer with a passion for travel and adventure. I created AdventureLog to help people like me document their adventures and plan new ones effortlessly. As a student, I am always looking for more opportunities to learn and grow, so feel free to reach out via the contact on my website if you would like to collaborate or chat! +Hi! I'm Sean, the creator of Voyage. I'm a college student and software developer with a passion for travel and adventure. I created Voyage to help people like me document their adventures and plan new ones effortlessly. As a student, I am always looking for more opportunities to learn and grow, so feel free to reach out via the contact on my website if you would like to collaborate or chat! ## 💎 Acknowledgements +- **[AdventureLog](https://github.com/seanmorley15/AdventureLog)** — the original project this fork is based on, created by [Sean Morley](https://seanmorley.com) - Logo Design by [nordtektiger](https://github.com/nordtektiger) - WorldTravel Dataset [dr5hn/countries-states-cities-database](https://github.com/dr5hn/countries-states-cities-database) diff --git a/backend/entrypoint.sh b/backend/entrypoint.sh index cb573de9..eef4e40e 100644 --- a/backend/entrypoint.sh +++ b/backend/entrypoint.sh @@ -82,6 +82,6 @@ if [ $? -eq 137 ]; then exit 1 fi -cat /code/adventurelog.txt +cat /code/voyage.txt exec "$@" \ No newline at end of file diff --git a/backend/server/adventures/admin.py b/backend/server/adventures/admin.py index 6440ccee..211c508c 100644 --- a/backend/server/adventures/admin.py +++ b/backend/server/adventures/admin.py @@ -196,6 +196,6 @@ admin.site.register(Activity, ActivityAdmin) admin.site.register(CollectionItineraryItem, CollectionItineraryItemAdmin) admin.site.register(CollectionItineraryDay) -admin.site.site_header = 'AdventureLog Admin' -admin.site.site_title = 'AdventureLog Admin Site' -admin.site.index_title = 'Welcome to AdventureLog Admin Page' +admin.site.site_header = 'Voyage Admin' +admin.site.site_title = 'Voyage Admin Site' +admin.site.index_title = 'Welcome to Voyage Admin Page' diff --git a/backend/server/adventures/geocoding.py b/backend/server/adventures/geocoding.py index fb80c32f..ad2c94c2 100644 --- a/backend/server/adventures/geocoding.py +++ b/backend/server/adventures/geocoding.py @@ -129,7 +129,7 @@ def _infer_addresstype(type_): def search_osm(query): try: url = f"https://nominatim.openstreetmap.org/search?q={query}&format=jsonv2" - headers = {'User-Agent': 'AdventureLog Server'} + headers = {'User-Agent': 'Voyage Server'} response = requests.get(url, headers=headers, timeout=(2, 5)) response.raise_for_status() data = response.json() @@ -370,7 +370,7 @@ def reverse_geocode(lat, lon, user): def reverse_geocode_osm(lat, lon, user): url = f"https://nominatim.openstreetmap.org/reverse?format=jsonv2&lat={lat}&lon={lon}" - headers = {'User-Agent': 'AdventureLog Server'} + headers = {'User-Agent': 'Voyage Server'} connect_timeout = 1 read_timeout = 5 diff --git a/backend/server/adventures/views/collection_view.py b/backend/server/adventures/views/collection_view.py index 580926d8..7d43236a 100644 --- a/backend/server/adventures/views/collection_view.py +++ b/backend/server/adventures/views/collection_view.py @@ -481,7 +481,7 @@ class CollectionViewSet(viewsets.ModelViewSet): collection = self.get_object() export_data = { - 'version': getattr(settings, 'ADVENTURELOG_RELEASE_VERSION', 'unknown'), + 'version': getattr(settings, 'VOYAGE_RELEASE_VERSION', 'unknown'), # Omit export_date to keep template-friendly exports (no dates) 'collection': { 'id': str(collection.id), diff --git a/backend/server/adventures/views/generate_description_view.py b/backend/server/adventures/views/generate_description_view.py index 28719608..61897506 100644 --- a/backend/server/adventures/views/generate_description_view.py +++ b/backend/server/adventures/views/generate_description_view.py @@ -17,7 +17,7 @@ class GenerateDescription(viewsets.ViewSet): # User-Agent header required by Wikipedia API, Accept-Language patched in per request BASE_HEADERS = { - 'User-Agent': f'AdventureLog/{getattr(settings, "ADVENTURELOG_RELEASE_VERSION", "unknown")}' + 'User-Agent': f'Voyage/{getattr(settings, "VOYAGE_RELEASE_VERSION", "unknown")}' } DEFAULT_LANGUAGE = "en" LANGUAGE_PATTERN = re.compile(r"^[a-z0-9-]{2,12}$", re.IGNORECASE) diff --git a/backend/server/adventures/views/import_export_view.py b/backend/server/adventures/views/import_export_view.py index 191d118b..99af8a3e 100644 --- a/backend/server/adventures/views/import_export_view.py +++ b/backend/server/adventures/views/import_export_view.py @@ -41,7 +41,7 @@ class BackupViewSet(viewsets.ViewSet): # Build export data structure export_data = { - 'version': settings.ADVENTURELOG_RELEASE_VERSION, + 'version': settings.VOYAGE_RELEASE_VERSION, 'export_date': datetime.now().isoformat(), 'user_email': user.email, 'user_username': user.username, @@ -390,7 +390,7 @@ class BackupViewSet(viewsets.ViewSet): # Return ZIP file as response with open(tmp_file.name, 'rb') as zip_file: response = HttpResponse(zip_file.read(), content_type='application/zip') - filename = f"adventurelog_backup_{user.username}_{datetime.now().strftime('%Y%m%d_%H%M%S')}.zip" + filename = f"voyage_backup_{user.username}_{datetime.now().strftime('%Y%m%d_%H%M%S')}.zip" response['Content-Disposition'] = f'attachment; filename="{filename}"' # Clean up diff --git a/backend/server/adventures/views/location_image_view.py b/backend/server/adventures/views/location_image_view.py index d1a9c4b0..87571205 100644 --- a/backend/server/adventures/views/location_image_view.py +++ b/backend/server/adventures/views/location_image_view.py @@ -198,7 +198,7 @@ class ContentImageViewSet(viewsets.ModelViewSet): return Response({"error": result}, status=status.HTTP_400_BAD_REQUEST) try: - headers = {'User-Agent': 'AdventureLog/1.0 (Image Proxy)'} + headers = {'User-Agent': 'Voyage/1.0 (Image Proxy)'} max_redirects = 3 current_url = image_url diff --git a/backend/server/adventures/views/recommendations_view.py b/backend/server/adventures/views/recommendations_view.py index 4f4018cf..574e6265 100644 --- a/backend/server/adventures/views/recommendations_view.py +++ b/backend/server/adventures/views/recommendations_view.py @@ -14,7 +14,7 @@ class RecommendationsViewSet(viewsets.ViewSet): permission_classes = [IsAuthenticated] OVERPASS_URL = "https://overpass-api.de/api/interpreter" NOMINATIM_URL = "https://nominatim.openstreetmap.org/search" - HEADERS = {'User-Agent': 'AdventureLog Server'} + HEADERS = {'User-Agent': 'Voyage Server'} # Quality thresholds MIN_GOOGLE_RATING = 3.0 # Minimum rating to include diff --git a/backend/server/main/settings.py b/backend/server/main/settings.py index bbf7c23a..d5816fc9 100644 --- a/backend/server/main/settings.py +++ b/backend/server/main/settings.py @@ -1,5 +1,5 @@ """ -AdventureLog Server settings +Voyage Server settings Reference: - Django settings: https://docs.djangoproject.com/en/stable/ref/settings/ @@ -235,7 +235,7 @@ AUTH_USER_MODEL = 'users.CustomUser' ACCOUNT_ADAPTER = 'users.adapters.CustomAccountAdapter' INVITATIONS_ADAPTER = ACCOUNT_ADAPTER INVITATIONS_ACCEPT_INVITE_AFTER_SIGNUP = True -INVITATIONS_EMAIL_SUBJECT_PREFIX = 'AdventureLog: ' +INVITATIONS_EMAIL_SUBJECT_PREFIX = 'Voyage: ' SOCIALACCOUNT_ADAPTER = 'users.adapters.CustomSocialAccountAdapter' ACCOUNT_SIGNUP_FORM_CLASS = 'users.form_overrides.CustomSignupForm' @@ -365,10 +365,10 @@ LOGGING = { # --------------------------------------------------------------------------- PUBLIC_URL = getenv('PUBLIC_URL', 'http://localhost:8000') -# ADVENTURELOG_CDN_URL = getenv('ADVENTURELOG_CDN_URL', 'https://cdn.adventurelog.app') +# VOYAGE_CDN_URL = getenv('VOYAGE_CDN_URL', 'https://cdn.voyage.app') -# Major release version of AdventureLog, not including the patch version date. -ADVENTURELOG_RELEASE_VERSION = 'v0.12.0' +# Major release version of Voyage, not including the patch version date. +VOYAGE_RELEASE_VERSION = 'v0.12.0' # https://github.com/dr5hn/countries-states-cities-database/tags COUNTRY_REGION_JSON_VERSION = 'v3.0' diff --git a/backend/server/run_periodic_sync.py b/backend/server/run_periodic_sync.py index abe40dd8..4df95b8c 100644 --- a/backend/server/run_periodic_sync.py +++ b/backend/server/run_periodic_sync.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -Periodic sync runner for AdventureLog. +Periodic sync runner for Voyage. Runs sync_visited_regions management command every 60 seconds. Managed by supervisord to ensure it inherits container environment variables. """ diff --git a/backend/server/templates/base.html b/backend/server/templates/base.html index 205445ee..f8c96893 100644 --- a/backend/server/templates/base.html +++ b/backend/server/templates/base.html @@ -3,10 +3,10 @@ - + - AdventureLog API Server + Voyage API Server