1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mytinytodo_ynh.git synced 2024-09-03 19:46:01 +02:00
mytinytodo_ynh/conf/config.php

25 lines
526 B
PHP
Raw Permalink Normal View History

2017-03-25 18:31:20 +01:00
<?php
/*
Uncomment the line with MTT_DB_TYPE if you make clean install only.
Leave it commented (with # at start) if you are upgrading from version before 1.7.
Select the database type: sqlite or mysql.
*/
define("MTT_DB_TYPE", "mysql");
2022-04-08 17:30:08 +02:00
define("MTT_DB_HOST", "localhost");
define("MTT_DB_NAME", "__DB_NAME__");
define("MTT_DB_USER", "__DB_USER__");
define("MTT_DB_PASSWORD", "__DB_PWD__");
define("MTT_DB_PREFIX", "");
// set mysqli if needed
define("MTT_DB_DRIVER", "mysqli");
define("MTT_SALT", "__SALT__");