Files
duckbrain/config.php

16 lines
305 B
PHP
Raw Permalink Normal View History

2020-03-07 23:37:19 -04:00
<?php
2025-10-16 20:02:54 -03:00
// Database configuration
2022-07-14 22:03:07 -04:00
define('DB_TYPE', 'mysql');
define('DB_HOST', 'localhost');
define('DB_NAME', '');
define('DB_USER', '');
define('DB_PASS', '');
2020-03-07 23:37:19 -04:00
2025-10-16 20:02:54 -03:00
// Site configuration
define('SITE_URL', '');
2020-03-07 23:37:19 -04:00
2025-10-16 20:02:54 -03:00
// Advanced configuration
2020-03-07 23:37:19 -04:00
define('ROOT_DIR', __DIR__);
define('ROOT_CORE', ROOT_DIR . '/src');