1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 04:12:28 +01:00

Merge pull request #56 from DDynamic/feature-theme_selection

Add theme key in ENV
This commit is contained in:
Dane Everitt 2016-02-07 19:11:12 -05:00
commit 037a923363
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
APP_ENV=production APP_ENV=production
APP_DEBUG=false APP_DEBUG=false
APP_KEY=SomeRandomString3232RandomString APP_KEY=SomeRandomString3232RandomString
APP_THEME=default
DB_HOST=localhost DB_HOST=localhost
DB_PORT=3306 DB_PORT=3306

View File

@ -4,7 +4,7 @@ return [
'enabled' => true, 'enabled' => true,
'themes_path' => realpath(base_path('resources/themes')), 'themes_path' => realpath(base_path('resources/themes')),
'asset_not_found' => 'LOG_ERROR', 'asset_not_found' => 'LOG_ERROR',
'active' => 'default', 'active' => ENV('APP_THEME', 'default'),
'themes' => [ 'themes' => [
'default' => [ 'default' => [