Skip to content

Vroum Solutions Documentation

Welcome to the Vroum Solutions developer documentation. Vroum is a multi-tenant SaaS platform for automotive repair shops (garages) and their clients. It enables:

  • Vehicle & car management, VIN decoding, recall lookups
  • Work orders, estimates, appointments & bay scheduling
  • Inventory, purchase orders, suppliers & stock mutations
  • Tire storage management (storage spaces, sections, tickets)
  • Invoicing, accounting (chart of accounts, transactions, periods) & PDF generation
  • Full-text search across the domain (Scout + Meilisearch)
  • Media & document handling
  • Role & permission-based access control
  • Real-time updates via WebSockets
  • Activity logging & audit trail
  • Internationalization & localization (en, fr)
  • Webhook integrations
  • Notifications & communication (SMS via Twilio, email via Mailgun)
  • AI-assisted tooling (laravel/ai, app/Ai)

AGENTS.md at the repo root is the short, authoritative convention sheet — read it first. This directory provides the long-form documents:

TopicFile
High-level architecturearchitecture.md
Backend (Laravel) detailsbackend.md
Frontend (Inertia + Vue 3) detailsfrontend.md
Theme & design tokenstheme.md
Dependency inventorydependencies.md
Coding standards & conventionsstandards.md
Development workflowdevelopment.md
Testing strategytesting.md
Multi-tenancy modelmulti-tenancy.md
Queues & real-time commsqueues-realtime.md
Type transformation pipelinetypes.md
Troubleshooting guidetroubleshooting.md
Security considerationssecurity.md

Host setup (DNSMasq, the shared Docker proxy network) lives in the root README.md.

Quick Start

Prerequisite: the host-level DNSMasq + proxy Docker network setup described in the root README.md.

  1. Copy environment file:
    bash
    cp .env.example .env
  2. Install dependencies:
    bash
    composer install
    npm install
  3. Start the stack (Laravel Sail — app, horizon, pgsql, redis, meilisearch, mailpit, minio, chromium):
    bash
    ./vendor/bin/sail up -d
  4. Run migrations & seeders:
    bash
    ./vendor/bin/sail artisan migrate --seed
  5. Start the Vite dev server:
    bash
    npm run dev

The app is served by the laravel.test container behind the nginx proxy — you do not need artisan serve. Queue workers run in the dedicated horizon container.

Philosophy

  • Thin controllers; business logic in Action classes (lorisleiva/laravel-actions).
  • Strong typing via Spatie Data & backed enums → automatic TypeScript generation.
  • Predictable formatting enforced by Pint (PHP) & ESLint/Prettier (TS/Vue).
  • Prefer feature tests over unit tests; real user flows validated end-to-end.
  • Configuration-as-code: minimal hidden magic; explicit bootstrap in bootstrap/app.php.
  • Performance & UX through Inertia.js bridging server-rendered data with SPA experience.
  • Semantic design tokens over raw colors, so light/dark mode is free (theme.md).

Audience

These docs target developers onboarding to Vroum Solutions or contributing new features, refactors, or integrations.

Proceed to architecture.md for a systemic view.