<?php
declare(strict_types=1);

/**
 * Copy this file to config.local.php and fill in real values.
 * config.local.php must be gitignored.
 *
 * In production, set 'env' => 'production' so session cookies are
 * marked Secure (HTTPS-only).
 */
return [
    'app' => [
        'env' => 'local',                  // set 'production' on the live server
        'url' => 'https://rpk.qcim.io',
    ],
    'db' => [
        'host' => '127.0.0.1',
        'port' => 3306,
        'name' => 'rpkadmin_rpk',
        'user' => 'rpkadmin_rpk',
        'pass' => 'your-db-password-here',
    ],
];
