Internal room booking platform with Nextcloud / CalDAV synchronization.
  • PHP 78.7%
  • Blade 17.1%
  • JavaScript 3.7%
  • CSS 0.5%
Find a file
2026-05-25 22:08:47 +02:00
app Phase-3F - Notification - Implement Verification Failed Notification 2026-05-25 22:08:47 +02:00
bootstrap Phase-3F Implement Admin Request Queue 2026-03-04 18:58:19 +01:00
config Phase-3F: User Administration - Refactor user roles - mitarbeiter is extern and superadmin is defined with config file 2026-03-20 03:10:25 +01:00
database DemoSeeder - Fix - past events couldn't be created because booking creation of past events isn't allowed 2026-05-02 17:44:01 +02:00
docs Phase-3F - Notification - Implement Verification Failed Notification 2026-05-25 22:08:47 +02:00
lang/de remove hardcoded language strings. We use now php files for translations strings and remove the json translation implementation 2026-02-28 17:02:14 +01:00
public Initial Laravel project 2026-02-16 00:46:32 +01:00
resources Phase-3F - Notification - Implement Verification Failed Notification 2026-05-25 22:08:47 +02:00
routes Phase-3F - Admin Edit Validation in Detail Panel 2026-05-21 16:21:16 +02:00
storage enable laravel debugbar 2026-02-26 23:36:35 +01:00
tests Phase-3F - Notification - Implement Verification Failed Notification 2026-05-25 22:08:47 +02:00
tmp Phase-3F - Notification - Spec Update - event requests are never deleted 2026-05-25 21:07:07 +02:00
.editorconfig Initial Laravel project 2026-02-16 00:46:32 +01:00
.env.example Phase-3F: User Administration - Refactor user roles - mitarbeiter is extern and superadmin is defined with config file 2026-03-20 03:10:25 +01:00
.gitattributes Initial Laravel project 2026-02-16 00:46:32 +01:00
.gitignore Initial Laravel project 2026-02-16 00:46:32 +01:00
AGENTS.md Phase-0 validated and constitutionally accepted 2026-02-16 13:27:50 +01:00
artisan Initial Laravel project 2026-02-16 00:46:32 +01:00
composer.json Phase-3F - Notification - Implement Verification Failed Notification 2026-05-25 22:08:47 +02:00
composer.lock Test Suite - remove DemoSeeder Test and add ParaTest to speed up the tests - Update Prompt Standard to use ParaTest 2026-05-25 17:29:23 +02:00
package-lock.json Phase-3 executed 2026-02-17 01:32:05 +01:00
package.json Phase-3 executed 2026-02-17 01:32:05 +01:00
phpunit.xml Phase-0 validated and constitutionally accepted 2026-02-16 13:27:50 +01:00
postcss.config.js Initial Laravel project 2026-02-16 00:46:32 +01:00
README.md Add development README 2026-02-16 01:16:11 +01:00
reasoning.md fixing some of the weekly view GUI Elemts. Legend should be at bottom and sticky. And Filters should be at one row. 2026-02-19 18:14:44 +01:00
tailwind.config.js Bring back booking status as visual border. Add tailwind safelist for booking status css classes 2026-02-19 23:25:17 +01:00
vite.config.js Initial Laravel project 2026-02-16 00:46:32 +01:00

Room Booking Platform (V1)

Internal room booking platform with Nextcloud / CalDAV synchronization.

This project follows strict constitutional governance. All system behaviour is defined in the docs directory.


Development Environment (Local)

Requirements:

  • PHP 8.2+
  • Composer
  • SQLite (local development only)
  • Mailpit (SMTP testing)

Initial Setup

Create SQLite database:

touch database/database.sqlite

Run migrations:

php artisan migrate

Generate application key (required):

php artisan key:generate

Start development server:

php artisan serve

Mail Testing

Start Mailpit (required for SMTP testing):

mailpit

Default configuration:

MAIL_HOST=127.0.0.1
MAIL_PORT=1025

Web UI:

http://127.0.0.1:8025

Governance Rules (Critical)

Authoritative specifications:

  • docs/01_project_constitution.md
  • docs/02_database_model.yaml
  • docs/03_codex_master_prompt.md

Codex MUST NOT invent behaviour outside constitutions.

If required documents are missing → STOP.


Database Rules

Production database: MariaDB (non-negotiable)

Local development MAY use SQLite.

No engine-specific SQL allowed.

Migrations define canonical schema.


Development Principles

  • Deterministic behaviour required
  • No silent failures
  • No speculative abstractions
  • Minimal diff principle

Warning

Do NOT modify architecture or schema without updating constitutions.

This system is constitution-driven.