1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/moncycle_ynh.git synced 2024-09-03 19:46:16 +02:00
moncycle_ynh/conf/config.php
2024-01-31 12:44:26 +07:00

27 lines
571 B
PHP

<?php
/* moncycle.app
**
** licence Creative Commons CC BY-NC-SA
**
** https://www.moncycle.app
** https://github.com/jean-io/moncycle.app
*/
define("APP_URL", "__DOMAIN____PATH__");
define("DB_HOST", "localhost");
define("DB_ID", "__DB_USER__");
define("DB_NAME", "__DB_NAME__");
define("DB_PORT", 3306);
define("DB_PASSWORD", "__DB_PWD__");
define("SMTP_HOST", "localhost");
define("SMTP_PORT", 25);
define("SMTP_MAIL", "__APP__@__DOMAIN__");
define("SMTP_PASSWORD", "");
define("CREATION_COMPTE", true);
define("CONNEXION_COMPTE", true);
define("CSV_SEP", ";");