From d231cd9f610703a2c585e2031864626b6ab637c6 Mon Sep 17 00:00:00 2001 From: Sander Dorigo Date: Tue, 11 Nov 2014 07:35:00 +0100 Subject: [PATCH] Added the homestead configuration because it's not really secret. --- app/config/.gitignore | 3 +- app/config/homestead/app.php | 14 +++++++++ app/config/homestead/database.php | 47 +++++++++++++++++++++++++++++++ app/config/homestead/mail.php | 13 +++++++++ 4 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 app/config/homestead/app.php create mode 100644 app/config/homestead/database.php create mode 100644 app/config/homestead/mail.php diff --git a/app/config/.gitignore b/app/config/.gitignore index 72c3919328..3415788027 100644 --- a/app/config/.gitignore +++ b/app/config/.gitignore @@ -1,4 +1,3 @@ local/ laptop/ -vagrant/ -homestead/ \ No newline at end of file +vagrant/ \ No newline at end of file diff --git a/app/config/homestead/app.php b/app/config/homestead/app.php new file mode 100644 index 0000000000..16c4d11e1b --- /dev/null +++ b/app/config/homestead/app.php @@ -0,0 +1,14 @@ + true, +]; \ No newline at end of file diff --git a/app/config/homestead/database.php b/app/config/homestead/database.php new file mode 100644 index 0000000000..de7f714bdf --- /dev/null +++ b/app/config/homestead/database.php @@ -0,0 +1,47 @@ + [ + + 'mysql' => [ + 'driver' => 'mysql', + 'host' => 'localhost', + 'database' => 'homestead', + 'username' => 'homestead', + 'password' => 'secret', + 'charset' => 'utf8', + 'collation' => 'utf8_unicode_ci', + 'prefix' => '', + ], + + 'pgsql' => [ + 'driver' => 'pgsql', + 'host' => 'localhost', + 'database' => 'homestead', + 'username' => 'homestead', + 'password' => 'secret', + 'charset' => 'utf8', + 'prefix' => '', + 'schema' => 'public', + ], + + ], + +]; \ No newline at end of file diff --git a/app/config/homestead/mail.php b/app/config/homestead/mail.php new file mode 100644 index 0000000000..79a8bf2536 --- /dev/null +++ b/app/config/homestead/mail.php @@ -0,0 +1,13 @@ + 'smtp', + 'host' => 'smtp.gmail.com', + 'port' => 587, + 'from' => ['address' => '@gmail.com', 'name' => 'Firefly III'], + 'encryption' => 'tls', + 'username' => '@gmail.com', + 'password' => '', + 'sendmail' => '/usr/sbin/sendmail -bs', + 'pretend' => false, +];