Added example config file
This commit is contained in:
parent
0bc17bac31
commit
aef770568d
35
app/config/example.php
Normal file
35
app/config/example.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'app' => [
|
||||
'url' => 'https://halftoneband.com',
|
||||
'hash' => [
|
||||
'algo' => PASSWORD_BCRYPT,
|
||||
'cost' => 10,
|
||||
],
|
||||
],
|
||||
|
||||
'db' => [
|
||||
'driver' => 'mysql',
|
||||
'host' => 'db.example.com',
|
||||
'name' => 'db_name',
|
||||
'username' => 'db_user',
|
||||
'password' => 'db_secret',
|
||||
'charset' => 'utf8',
|
||||
'collation' => 'utf8_unicode_ci',
|
||||
'prefix' => '',
|
||||
],
|
||||
|
||||
'auth' => [
|
||||
'session' => 'user_id',
|
||||
'remember' => 'user_r',
|
||||
],
|
||||
|
||||
'twig' => [
|
||||
'debug' => true,
|
||||
],
|
||||
|
||||
'csrf' => [
|
||||
'key' => 'csrf_token',
|
||||
],
|
||||
];
|
Loading…
Reference in New Issue
Block a user