aboutsummaryrefslogtreecommitdiff
path: root/AppConfigBuild.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-11-30 00:09:47 -0500
committerThedro Neely <thedroneely@gmail.com>2019-11-30 00:09:47 -0500
commit9f1ebaf5e1eb14a0f849c294a98e26ed4d5c7ee6 (patch)
tree7a6482d3e97cbcf4412e618fee3c2577a22983b5 /AppConfigBuild.php
parent08101d0cc8a3f769eb99f50c438f6aaa88e8dc69 (diff)
downloadthedroneely.com-9f1ebaf5e1eb14a0f849c294a98e26ed4d5c7ee6.tar.gz
thedroneely.com-9f1ebaf5e1eb14a0f849c294a98e26ed4d5c7ee6.tar.bz2
thedroneely.com-9f1ebaf5e1eb14a0f849c294a98e26ed4d5c7ee6.zip
AppConfigBuild.php: Move hardcoded metadata to environment variables
Diffstat (limited to 'AppConfigBuild.php')
-rw-r--r--AppConfigBuild.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/AppConfigBuild.php b/AppConfigBuild.php
index 75188c5..0e83ebe 100644
--- a/AppConfigBuild.php
+++ b/AppConfigBuild.php
@@ -2,7 +2,7 @@
return [
'database' => [
- 'name' => 'thedroneely',
+ 'name' => 'pgsql_database',
'username' => 'pgsql_username',
'password' => 'pgsql_password',
'connection' => 'pgsql:',
@@ -12,8 +12,9 @@ return [
],
'mail' => [
- 'host' => 'smtp.gmail.com',
- 'port' => '465',
+ 'host' => 'email_host',
+ 'port' => 'email_port',
+ 'name' => 'email_name',
'username' => 'email_username',
'password' => 'email_password',
]