<?php
// LOCAL DEV ONLY - sqlite, for testing the API without a MariaDB server.
// Production uses config.example.php's mysql settings instead.

return [
    'db_driver' => 'sqlite',
    'sqlite_path' => __DIR__ . '/dev.sqlite',
    'uploads_dir' => __DIR__ . '/uploads',
];
