mirror of
https://github.com/YunoHost-Apps/moncycle_ynh.git
synced 2024-09-03 19:46:16 +02:00
d01fd71c1e
This reverts commite5dfb6b5c5
, reversing changes made to7483cebcca
.
27 lines
572 B
PHP
27 lines
572 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", ";");
|
|
|