87 lines
2.5 KiB
Markdown
87 lines
2.5 KiB
Markdown
---
|
|
title: TRIP
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, travel, app-marathon3-batch-b]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=travel&app=trip]
|
|
---
|
|
|
|
# 🗺️ TRIP
|
|
|
|
> Travel Record & Itinerary Planner — journal de voyage personnel avec photos, dates, lieux.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | (community) |
|
|
| **GitHub** | (community/trip-planner) |
|
|
| **License** | MIT |
|
|
| **Langage** | TypeScript / PHP |
|
|
| **Étoiles GitHub** | <500 ⭐ |
|
|
| **Catégorie** | [[cat-travel\|Travel]] |
|
|
|
|
## 📝 Description
|
|
|
|
**TRIP** est un journal de voyage personnel où vous enregistrez vos trips passés et à venir, avec photos géolocalisées, notes, dates, dépenses. C'est un **"photo album + journal"** de vos voyages. Différence vs **Surmai**: TRIP est **passé-first** (souvenirs), Surmai est **futur-first** (planning). Pour qui: voyageurs qui veulent garder une trace privée de leurs aventures.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
trip:
|
|
image: ghcr.io/community/trip:latest
|
|
container_name: trip
|
|
restart: unless-stopped
|
|
environment:
|
|
- DATABASE_URL=sqlite:///data/trip.db
|
|
- UPLOAD_DIR=/data/uploads
|
|
- ADMIN_EMAIL=admin@example.com
|
|
volumes:
|
|
- trip-data:/data
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.trip.rule=Host(`trip.example.com`)
|
|
- traefik.http.routers.trip.entrypoints=websecure
|
|
- traefik.http.routers.trip.tls.certresolver=letsencrypt
|
|
- traefik.http.services.trip.loadbalancer.server.port=3000
|
|
|
|
volumes:
|
|
trip-data:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-surmai]] — Futur-first, collab.
|
|
- [[app-trek]] — Backpacking focus.
|
|
- **Immich** — Photo manager, peut servir de photo album voyage.
|
|
- **Lychee** — Photo gallery.
|
|
|
|
### Propriétaires
|
|
- **Polarsteps** — Tracking GPS auto, social.
|
|
- **Day One** — Journal premium.
|
|
- **Travel Mapper** — Map-based journaling.
|
|
- **Google Travel** — Plan + history.
|
|
|
|
## 🔐 Sécurité
|
|
- **Photos**: backup séparé (rclone, B2).
|
|
- **Géoloc**: privacy — flouter par défaut.
|
|
- **HTTPS**: obligatoire.
|
|
- **Auth**: 2FA recommandée.
|
|
|
|
## 📚 Ressources
|
|
- [GitHub](https://github.com/search?q=trip+travel+planner+self-hosted)
|
|
- [Polarsteps](https://www.polarsteps.com) (référence UX)
|
|
|
|
## Pages Liées
|
|
- [[cat-travel]] — Catégorie Travel
|
|
- [[app-surmai]] — Concurrent
|
|
- [[recettes-docker-compose]] — Templates Docker
|