mirror of
https://github.com/p08dev/Bloggr.git
synced 2026-06-17 04:33:56 +02:00
11 lines
229 B
PHP
11 lines
229 B
PHP
<?php
|
|
define('SITE_TITLE', 'Title of Doom');
|
|
|
|
define('DB_HOST', 'localhost');
|
|
define('DB_NAME', 'bloggr');
|
|
define('DB_USER', 'root');
|
|
define('DB_PASS', '');
|
|
|
|
define('ADMIN_USER', 'admin');
|
|
define('ADMIN_EMAIL', 'test@test.com');
|