You've already forked Php-Template
All checks were successful
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m55s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m56s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 2m10s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m56s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 2m45s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 53s
Reviewed-on: #6 Co-authored-by: Ron Rise <ron@siteworxpro.com> Co-committed-by: Ron Rise <ron@siteworxpro.com>
46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
|
|
use Siteworxpro\App\Helpers\Env;
|
|
|
|
return [
|
|
|
|
/**
|
|
* The server configuration.
|
|
*/
|
|
'server' => [
|
|
'port' => Env::get('HTTP_PORT', 9501, 'int'),
|
|
'dev_mode' => Env::get('DEV_MODE', false, 'bool'),
|
|
],
|
|
|
|
/**
|
|
* 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'),
|
|
'port' => Env::get('DB_PORT', 5432, 'int'),
|
|
'charset' => Env::get('DB_CHARSET', 'utf8'),
|
|
'collation' => Env::get('DB_COLLATION', 'utf8_unicode_ci'),
|
|
'prefix' => Env::get('DB_PREFIX', ''),
|
|
'options' => [
|
|
// Add any additional PDO options here
|
|
],
|
|
],
|
|
|
|
'cors' => [
|
|
'allowed_origins' => Env::get('CORS_ALLOWED_ORIGINS', 'localhost:3000'),
|
|
'allow_credentials' => Env::get('CORS_ALLOW_CREDENTIALS', true, 'bool'),
|
|
'max_age' => Env::get('CORS_MAX_AGE', ''),
|
|
],
|
|
|
|
'redis' => [
|
|
'host' => Env::get('REDIS_HOST', 'localhost'),
|
|
'port' => Env::get('REDIS_PORT', 6379, 'int'),
|
|
'database' => Env::get('REDIS_DATABASE', 0, 'int'),
|
|
'password' => Env::get('REDIS_PASSWORD'),
|
|
]
|
|
];
|