game/onyx2/db/default.profile.php
Nigel Sheldon 6ff22f0279
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
doker compose + deux-trois trucs pour développer plus facilement
2020-11-19 13:55:22 +01:00

15 lines
258 B
PHP

<?php
if(!defined('ONYX')) exit;
$___profile['db'] = 'hb_game';
if (getenv("MYSQL_HOST") === False) {
$___profile['host'] = 'localhost';
} else {
$___profile['host'] = getenv("MYSQL_HOST");
}
$___profile['user'] = 'hb';
$___profile['pass'] = 'hb';
?>