1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-18 23:42:25 +02:00

Allow custom time zone for application

This commit is contained in:
Ubuntu 2015-06-10 08:28:53 +12:00
parent 30c974c255
commit 0379d2b4f7
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ APP_DEBUG=true
APP_URL=http://ninja.dev
APP_CIPHER=rijndael-128
APP_KEY
APP_TIMEZONE
DB_TYPE=mysql
DB_HOST=localhost
@ -17,4 +18,4 @@ MAIL_HOST
MAIL_USERNAME
MAIL_FROM_ADDRESS
MAIL_FROM_NAME
MAIL_PASSWORD
MAIL_PASSWORD

View File

@ -41,7 +41,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => env('APP_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------