Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/views/partials/admin/settings/notice.blade.php
7461 views
1
@section('settings::notice')
2
@if(config('pterodactyl.load_environment_only', false))
3
<div class="row">
4
<div class="col-xs-12">
5
<div class="alert alert-danger">
6
Your Panel is currently configured to read settings from the environment only. You will need to set <code>APP_ENVIRONMENT_ONLY=false</code> in your environment file in order to load settings dynamically.
7
</div>
8
</div>
9
</div>
10
@endif
11
@endsection
12
13