Add environment variable configuration; closes #47

This commit is contained in:
Dane Everitt 2016-01-25 20:08:48 -05:00
parent 94f5bf0862
commit 1c58a9d699
3 changed files with 100 additions and 2 deletions

View file

@ -30,7 +30,7 @@ return [
|
*/
'url' => 'http://localhost',
'url' => ENV('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------
@ -43,7 +43,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => ENV('APP_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------