1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/config/db.example.inc.php

18 lines
548 B
PHP
Raw Normal View History

<?php
# This is the database configuration of Movim
# You need to copy an rename this file to 'db.inc.php' and complete the values
$conf = array(
# The type can be 'pgsql' or 'mysql'
'type' => 'mysql',
# The database username
2015-08-10 23:42:45 +02:00
'username' => 'username',
# The password
2015-08-10 23:42:45 +02:00
'password' => 'password',
# Where can we find the database ?
'host' => 'localhost',
# The port number, 3306 for MySQL and 5432 for PostGreSQL
'port' => 3306,
# The database name
2015-08-10 23:42:45 +02:00
'database' => 'movim'
);