Rename AdventureLog to Voyage and add fork attribution

- Replace all AdventureLog references with Voyage across ~102 files
  (7 case variants: AdventureLog, adventurelog, Adventurelog, ADVENTURELOG,
  AdventUrelog, AdventureLOG, adventure-log, adventure_log)
- Rename brand, static, and documentation assets to use voyage naming
- Rename install_adventurelog.sh → install_voyage.sh
- Update README.md and voyage_overview.md to credit AdventureLog as
  the upstream project and Sean Morley as its original creator
This commit is contained in:
2026-03-06 11:05:26 +00:00
parent 2b644d3afa
commit df8d1adf15
151 changed files with 653 additions and 658 deletions

View File

@@ -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"

View File

@@ -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. Well 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. Well look into it as soon as we can. 🙌

View File

@@ -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] <short description>"
labels: deployment
assignees: ""

View File

@@ -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] <short description>"
labels: enhancement
assignees: ""
@@ -20,7 +20,7 @@ Is your request related to a specific problem?
## 🛠️ Proposed Solution
Describe the solution youd 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.

View File

@@ -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

View File

@@ -12,7 +12,7 @@ on:
- "backend/**"
env:
IMAGE_NAME: "adventurelog-backend"
IMAGE_NAME: "voyage-backend"
jobs:
upload:

View File

@@ -12,7 +12,7 @@ on:
- "backend/**"
env:
IMAGE_NAME: "adventurelog-backend"
IMAGE_NAME: "voyage-backend"
jobs:
upload:

View File

@@ -9,7 +9,7 @@ on:
types: [released]
env:
IMAGE_NAME: "adventurelog-backend"
IMAGE_NAME: "voyage-backend"
jobs:
upload:

View File

@@ -12,7 +12,7 @@ on:
- "cdn/**"
env:
IMAGE_NAME: "adventurelog-cdn"
IMAGE_NAME: "voyage-cdn"
jobs:
upload:

View File

@@ -12,7 +12,7 @@ on:
- "cdn/**"
env:
IMAGE_NAME: "adventurelog-cdn"
IMAGE_NAME: "voyage-cdn"
jobs:
upload:

View File

@@ -9,7 +9,7 @@ on:
types: [released]
env:
IMAGE_NAME: "adventurelog-cdn"
IMAGE_NAME: "voyage-cdn"
jobs:
upload:

View File

@@ -12,7 +12,7 @@ on:
- "frontend/**"
env:
IMAGE_NAME: "adventurelog-frontend"
IMAGE_NAME: "voyage-frontend"
jobs:
upload:

View File

@@ -12,7 +12,7 @@ on:
- "frontend/**"
env:
IMAGE_NAME: "adventurelog-frontend"
IMAGE_NAME: "voyage-frontend"
jobs:
upload:

View File

@@ -9,7 +9,7 @@ on:
types: [released]
env:
IMAGE_NAME: "adventurelog-frontend"
IMAGE_NAME: "voyage-frontend"
jobs:
upload:

View File

@@ -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