<?php
// Copy this file to config.local.php and fill in your real values.
// This file is never served by Apache — keep it outside public/.

define('DB_HOST', 'localhost');
define('DB_PORT', 3306);
define('DB_NAME', 'idea_hunter');
define('DB_USER', 'idea_hunter_user');
define('DB_PASS', 'your_db_password_here');

define('AUTH_USERNAME', 'reviewer');
// Generate with: php -r "echo password_hash('yourpassword', PASSWORD_BCRYPT);"
define('AUTH_PASS_HASH', '$2y$12$your_hash_here');

// Shared secret for the Python pipeline ingest endpoint
// Generate with: php -r "echo bin2hex(random_bytes(32));"
define('INGEST_API_KEY', 'your_random_hex_key_here');
