1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/itflow_ynh.git synced 2024-09-03 19:26:24 +02:00
itflow_ynh/conf/config.php
2023-10-04 19:26:01 +02:00

13 lines
427 B
PHP

<?php
$dbhost = 'localhost';
$dbusername = '__DB_USER__';
$dbpassword = '__DB_PWD__';
$database = '__DB_NAME__';
$mysqli = mysqli_connect($dbhost, $dbusername, $dbpassword, $database) or die('Database Connection Failed');
$config_app_name = 'ITFlow';
$config_base_url = '__DOMAIN____PATH__';
$config_https_only = false;
$repo_branch = 'master';
$installation_id = 'BmBuGzc3WzV33egS36g0K3miyQGWOfKP';
$config_enable_setup = 0;