mirror of
https://github.com/YunoHost-Apps/moncycle_ynh.git
synced 2024-09-03 19:46:16 +02:00
26 lines
502 B
PHP
26 lines
502 B
PHP
|
<?php
|
||
|
/* moncycle.app
|
||
|
**
|
||
|
** licence Creative Commons CC BY-NC-SA
|
||
|
**
|
||
|
** https://www.moncycle.app
|
||
|
** https://github.com/jean-io/moncycle.app
|
||
|
*/
|
||
|
|
||
|
define("DB_HOST", "");
|
||
|
define("DB_ID", "__APP__");
|
||
|
define("DB_NAME", "__APP__");
|
||
|
define("DB_PORT", 3306);
|
||
|
define("DB_PASSWORD", "");
|
||
|
|
||
|
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", ";");
|
||
|
|