Added config file for project

This commit is contained in:
Florian Bouillon 2019-04-16 16:34:30 +02:00
parent 147777af0d
commit 03d45937d7

32
config.jsonc Normal file
View File

@ -0,0 +1,32 @@
{
"database": {
//driver to use with database
"driver": "pdo_mysql",
// host of database
"host": "127.0.0.1",
// database name
"dbname": "aptatio",
// user to use
"user": "aptatio",
//user's password
"password": "aptatio"
},
"cache": {
// enable/disable the cache
"enabled": "false",
//path to cache folder
"path": "cache/",
// driver to use with cache
"driver": "\\AdminPanel\\Cache\\FileCache",
"options": {
"ttl": null
}
}
}