chore: remove .env from git and add to .gitignore

This commit is contained in:
Husanjonazamov
2026-02-24 13:25:20 +05:00
parent e0f1989655
commit 4cc686a130

View File

@@ -5,6 +5,8 @@ namespace App\Providers;
use Illuminate\Support\Facades\Schema; use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\URL;
class AppServiceProvider extends ServiceProvider class AppServiceProvider extends ServiceProvider
{ {
/** /**
@@ -25,5 +27,6 @@ class AppServiceProvider extends ServiceProvider
public function boot() public function boot()
{ {
Schema::defaultStringLength(191); Schema::defaultStringLength(191);
URL::forceScheme('https');
} }
} }