- 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
46 lines
942 B
Markdown
46 lines
942 B
Markdown
# 🚀 Quick Start Install
|
|
|
|
Install **Voyage** in seconds using our automated script.
|
|
|
|
## 🧪 One-Liner Install
|
|
|
|
```bash
|
|
curl -sSL https://get.voyage.app | bash
|
|
```
|
|
|
|
This will:
|
|
|
|
- Check dependencies (Docker, Docker Compose)
|
|
- Set up project directory
|
|
- Download required files
|
|
- Prompt for basic configuration (like domain name)
|
|
- Start Voyage with Docker Compose
|
|
|
|
## ✅ Requirements
|
|
|
|
- Docker + Docker Compose
|
|
- Linux server or VPS
|
|
- Optional: Domain name for HTTPS
|
|
|
|
## 🔍 What It Does
|
|
|
|
The script automatically:
|
|
|
|
1. Verifies Docker is installed and running
|
|
2. Downloads `docker-compose.yml` and `.env`
|
|
3. Prompts you for domain and port settings
|
|
4. Waits for services to start
|
|
5. Prints success info with next steps
|
|
|
|
## 🧼 Uninstall
|
|
|
|
To remove everything:
|
|
|
|
```bash
|
|
cd voyage
|
|
docker compose down -v
|
|
rm -rf voyage
|
|
```
|
|
|
|
Need more control? Explore other [install options](getting_started.md) like Docker, Proxmox, Synology NAS, and more.
|