We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ec659f commit edd2689Copy full SHA for edd2689
.env.example
@@ -1,12 +1,11 @@
1
APP_ENV=production
2
APP_DEBUG=false
3
APP_KEY=SomeRandomString3232RandomString
4
-APP_THEME=default
+APP_THEME=pterodactyl
5
APP_TIMEZONE=UTC
6
APP_CLEAR_TASKLOG=720
7
APP_DELETE_MINUTES=10
8
-CONSOLE_PUSH_FREQ=250
9
-CONSOLE_PUSH_COUNT=10
+APP_URL=http://yoursite.com/
10
11
DB_HOST=localhost
12
DB_PORT=3306
app/Console/Commands/UpdateEnvironment.php
@@ -122,7 +122,7 @@ public function handle()
122
}
123
124
if (is_null($this->option('url'))) {
125
- $variables['APP_URL'] = $this->ask('Panel URL', env('APP_URL'));
+ $variables['APP_URL'] = $this->ask('Panel URL (include http(s)://)', env('APP_URL'));
126
} else {
127
$variables['APP_URL'] = $this->option('url');
128
0 commit comments