<?php
declare(strict_types=1);

/**
 * Copy this file to config/local_settings.php on the VPS, then edit it.
 * Do not publish or commit the real local_settings.php file.
 */
return [
    'DB_HOST' => '127.0.0.1',
    'DB_PORT' => '3306',
    'DB_NAME' => 'homeless',
    'DB_USER' => 'homeless',
    'DB_PASS' => 'CHANGE_ME_USE_A_NEW_PASSWORD',

    // Optional: only configure these when the separate smart-agent service exists.
    'AGENT_SERVICE_URL' => '',
    'AGENT_ADMIN_TOKEN' => '',

    'MAX_UPLOAD_BYTES' => '5242880',
];
