Oriento is a full-stack platform for organizing orienteering events and scavenger hunts. Real-time maps, QR checkpoints, live leaderboards — all in a sleek PWA your teams install in seconds.
From event setup to finish-line celebration — Oriento handles the full lifecycle of your scavenger hunt.
Oriento is designed to get out of the way so you can focus on running a great event.
Every piece chosen for reliability, developer experience and performance.
Pre-built Docker images are published to GHCR. Copy the compose file, fill in your secrets and you're live.
services:
db:
image: postgres:15-alpine
restart: always
env_file: ./db.env.prod
volumes:
- postgres_data_prod:/var/lib/postgresql/data
backend:
image: ghcr.io/athamour1/oriento/backend:latest
restart: always
depends_on: [db]
ports: ["3000:3000"]
env_file: ./backend/.env.prod
frontend:
image: ghcr.io/athamour1/oriento/frontend:latest
restart: always
ports: ["80:80"]
environment:
- VITE_API_URL=https://your-domain.com
volumes:
postgres_data_prod:
POSTGRES_USER=admin
POSTGRES_PASSWORD=CHANGE_ME
POSTGRES_DB=orienteering
DATABASE_URL=postgresql://admin:CHANGE_ME@db:5432/orienteering
JWT_SECRET=CHANGE_ME_MIN_32_CHARS
ADMIN_USERNAME=admin
ADMIN_PASSWORD=CHANGE_ME
CORS_ORIGIN=https://your-domain.com
PORT=3000
docker compose -f docker-compose.prod.yml pull
docker compose -f docker-compose.prod.yml up -d
Oriento is completely open-source and free. Clone it, deploy it with Docker and run your first event today.