We build tools that viibe — intuitive, fast, and unapologetically bold.
Your data lives on your hardware. Period.
Every product ships with source code you can audit, fork, and improve.
We don't phone home. We don't track you. We don't care what you do with our software.
Lean dependencies, SQLite databases, zero-config deployments. Software that runs for years.
Garage Logbook is a lightweight Flask/SQLite web application for tracking vehicle maintenance, service history, and upcoming tasks. Role-based auth, CSV import/export, dark mode, and a responsive UI — all running on your own hardware.
git clone https://github.com/viibeware/garage-logbook.git
cd garage-logbook
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
flask db-init
flask run --host=0.0.0.0 --port=5000
# Open your browser to:
# http://localhost:5000
# Default admin: admin / changeme
docker run -d \
--name garage-logbook \
-p 5000:5000 \
-v garage-data:/app/data \
viibeware/garage-logbook:latest
# docker-compose.yml
version: '3.8'
services:
garage-logbook:
image: viibeware/garage-logbook:latest
ports:
- '5000:5000'
volumes:
- garage-data:/app/data
restart: unless-stopped
volumes:
garage-data:
docker compose up -d