Slim API deployment - composer install + full CRUD endpoints

This commit is contained in:
Hermes Agent
2026-05-20 14:36:05 +02:00
parent 48bf9c7088
commit 8ab4e532fd
1727 changed files with 7746 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
return [
'app_name' => 'DriveTime Planner',
'env' => 'local',
'debug' => true,
'db_path' => __DIR__ . '/../storage/database/app.sqlite',
'session_path' => __DIR__ . '/../storage/sessions',
'session_name' => 'drive_time_session',
'frontend_entry' => __DIR__ . '/../public/assets/index.js',
];