aboutsummaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2020-06-19 01:30:53 -0400
committerThedro Neely <thedroneely@gmail.com>2020-06-19 01:53:15 -0400
commit15323bfea57229fd6d35b82fad06f21571ec1138 (patch)
tree21d09b8284f8174564e41394d25350f18edc8835 /config.php
parent4fd9a95ba952dd5528553524989160cd24284b0b (diff)
downloadthedroneely.com-15323bfea57229fd6d35b82fad06f21571ec1138.tar.gz
thedroneely.com-15323bfea57229fd6d35b82fad06f21571ec1138.tar.bz2
thedroneely.com-15323bfea57229fd6d35b82fad06f21571ec1138.zip
AppConfigBuild.php -> config.php
Diffstat (limited to 'config.php')
-rw-r--r--config.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/config.php b/config.php
new file mode 100644
index 0000000..715eb48
--- /dev/null
+++ b/config.php
@@ -0,0 +1,25 @@
+<?php
+
+return [
+ 'database' => [
+ 'name' => 'pgsql_database',
+ 'username' => 'pgsql_username',
+ 'password' => 'pgsql_password',
+ 'connection' => 'pgsql:',
+ 'options' => [
+ PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
+ ]
+ ],
+
+ 'mail' => [
+ 'host' => 'email_host',
+ 'port' => 'email_port',
+ 'name' => 'email_name',
+ 'username' => 'email_username',
+ 'password' => 'email_password',
+ ],
+
+ 'cms' => [
+ 'token' => 'cms_api_token',
+ ]
+];