viibeware

Come viibe with us

We build tools that viibe — intuitive, fast, and unapologetically bold.

12K+
Active Users
99.97%
Uptime SLA
4.2M
API Calls / Month
380+
GitHub Stars
< 50ms
Avg Response Time
23
Countries Served
156
Contributors
3
Open Source Projects
Who We Are
viibeware Corp. is an independent software studio focused on building self-hosted, privacy-first tools for people who care about owning their data. We believe great software should feel like an extension of your workflow — not a fight against it. Founded by engineers who grew tired of bloated SaaS platforms, we craft lean applications with real utility.

Self-Hosted First

Your data lives on your hardware. Period.

Open Source Core

Every product ships with source code you can audit, fork, and improve.

No Telemetry

We don't phone home. We don't track you. We don't care what you do with our software.

Built to Last

Lean dependencies, SQLite databases, zero-config deployments. Software that runs for years.

Garage Logbook
v0.1.4
The self-hosted car maintenance tracker that just works.

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.

Python 3.10+ Flask SQLite Jinja2 Bootstrap 5
Multi-vehicle support with photo uploads
Service history timeline with cost tracking
Upcoming maintenance reminders
Role-based authentication (Admin / User)
CSV import & export for data portability
Responsive dark-mode UI
SQLite database — no external dependencies
Settings page for customization
Install Garage Logbook
1
Clone the Repository
git clone https://github.com/viibeware/garage-logbook.git cd garage-logbook
2
Create a Virtual Environment
python3 -m venv venv source venv/bin/activate
3
Install Dependencies
pip install -r requirements.txt
4
Initialize the Database
flask db-init
5
Run the Application
flask run --host=0.0.0.0 --port=5000
6
Access the App
# Open your browser to: # http://localhost:5000 # Default admin: admin / changeme
1
Pull & Run with Docker
docker run -d \ --name garage-logbook \ -p 5000:5000 \ -v garage-data:/app/data \ viibeware/garage-logbook:latest
2
Or Use Docker Compose
# 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:
3
Start with Compose
docker compose up -d
Engineering at a Glance
Deployments This Month
1,847
↑ +12%
Issues Closed (30d)
234
↑ +8%
Avg Build Time
18s
↓ -23%
Test Coverage
94.2%
↑ +1.4%
Docker Pulls
89.4K
↑ +31%
Open PRs
17
↓ -3
Trusted by Engineers
Finally, a maintenance tracker that doesn't try to upsell me on premium features. It just works.
Marcus R.
Home Lab Enthusiast
Deployed Garage Logbook on my Proxmox server in under 5 minutes. The Docker setup is flawless.
Sarah K.
DevOps Engineer
The CSV import saved me hours migrating from a spreadsheet. Clean, simple, done.
Jake T.
Fleet Manager