Skip to content

Commit edd2689

Browse files
committed
Adjust default theme in .env and note that http:// is required on URLs
1 parent 0ec659f commit edd2689

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.env.example

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
APP_ENV=production
22
APP_DEBUG=false
33
APP_KEY=SomeRandomString3232RandomString
4-
APP_THEME=default
4+
APP_THEME=pterodactyl
55
APP_TIMEZONE=UTC
66
APP_CLEAR_TASKLOG=720
77
APP_DELETE_MINUTES=10
8-
CONSOLE_PUSH_FREQ=250
9-
CONSOLE_PUSH_COUNT=10
8+
APP_URL=http://yoursite.com/
109

1110
DB_HOST=localhost
1211
DB_PORT=3306

app/Console/Commands/UpdateEnvironment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function handle()
122122
}
123123

124124
if (is_null($this->option('url'))) {
125-
$variables['APP_URL'] = $this->ask('Panel URL', env('APP_URL'));
125+
$variables['APP_URL'] = $this->ask('Panel URL (include http(s)://)', env('APP_URL'));
126126
} else {
127127
$variables['APP_URL'] = $this->option('url');
128128
}

0 commit comments

Comments
 (0)