mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
454 B
15 lines
454 B
; This is the database configuration of Movim
|
|
; You need to copy an rename this file to 'db.ini' and complete the values
|
|
[db]
|
|
; The type can be 'pgsql' or 'mysql'
|
|
type = 'mysql'
|
|
; The database username
|
|
username = 'username'
|
|
; The password
|
|
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
|
|
database = 'movim'
|