You've already forked Php-Template
initial
This commit is contained in:
24
config.php
Normal file
24
config.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
use Siteworxpro\App\Helpers\Env;
|
||||
|
||||
return [
|
||||
|
||||
/**
|
||||
* The server configuration.
|
||||
*/
|
||||
'server' => [
|
||||
'port' => Env::get('HTTP_PORT', 9501),
|
||||
],
|
||||
|
||||
/**
|
||||
* The database configuration.
|
||||
*/
|
||||
'db' => [
|
||||
'driver' => Env::get('DB_DRIVER', 'pgsql'),
|
||||
'host' => Env::get('DB_HOST', 'localhost'),
|
||||
'database' => Env::get('DB_DATABASE', 'siteworxpro'),
|
||||
'username' => Env::get('DB_USERNAME', 'siteworxpro'),
|
||||
'password' => Env::get('DB_PASSWORD', 'password'),
|
||||
]
|
||||
];
|
||||
Reference in New Issue
Block a user