
<?php
// config.php

return [
    'db' => [
        'host' => getenv('DB_HOST') ?: 'localhost',
        'user' => getenv('DB_USER') ?: 'tasmoybb_grammie',
        'pass' => getenv('DB_PASS') ?: '3XT3RN4l!337',
        'name' => getenv('DB_NAME') ?: 'tasmoybb_grammie',
        'charset' => 'utf8mb4'
    ],

    'paths' => [
        'assets'  => __DIR__ . '/assets/',
        'imports' => __DIR__ . '/imports/'
    ],

    'limits' => [
        'max_results' => 500
    ],

    'app' => [
        'debug' => false
    ]
];