`. 'api_key' => 'REPLACE_WITH_A_LONG_RANDOM_STRING', // PDO DSN. // // MySQL (recommended when pdo_sqlite isn't available — older Ubuntu boxes // tend to be in this state): // 'db_dsn' => 'mysql:host=localhost;dbname=att_hc;charset=utf8mb4' // 'db_user' => 'att_hc' // 'db_pass' => '' // // See DEPLOY.md → "MySQL setup" for the CREATE DATABASE / CREATE USER / // GRANT statements. // // SQLite (simplest when the box has php8.x-sqlite3 installed): // 'db_dsn' => 'sqlite:' . __DIR__ . '/data/att_hc.sqlite' // 'db_user' => null // 'db_pass' => null 'db_dsn' => 'mysql:host=localhost;dbname=att_hc;charset=utf8mb4', 'db_user' => 'att_hc', 'db_pass' => 'REPLACE_WITH_DB_PASSWORD', // Server version, surfaced on GET /. Bump on deploy. 'version' => '0.1.0', ];