juggl/public/api/config/config.php

13 lines
296 B
PHP
Raw Normal View History

2021-01-03 12:29:41 +01:00
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL | E_STRICT);
$config = [
"host" => "localhost",
"dbname" => "admin_juggl",
"username" => "admin_juggl",
"password" => "}dyn{5O!tUlZD;9R?lbi$.@=I,_a2L",
2021-01-03 12:29:41 +01:00
"table_prefix" => "ju_"
];