Update .env.example to reflect new config values

This commit is contained in:
2020-06-27 22:22:33 +01:00
parent 33c16fcf46
commit 9ec2f9edce
2 changed files with 17 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ use App\Observers\UserObserver;
use App\User;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
use Sentry;
class AppServiceProvider extends ServiceProvider
{
@@ -26,6 +27,10 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot()
{
Sentry\init([
'release' => env('RELEASE')
]);
Schema::defaultStringLength(191);
User::observe(UserObserver::class);
}