Created example configuration

This commit is contained in:
Gregorio Chiko Putra 2017-09-13 13:36:22 +07:00
parent 7b158e7924
commit 29d437dfed

13
App/Config.php.example Normal file
View File

@ -0,0 +1,13 @@
<?php
namespace App;
class Config
{
const
DB_HOST = 'mariadb',
DB_DB = 'lepisi',
DB_UNAME = 'root',
DB_PWD = 'root',
LOG_ERRORS = false;
}