Skip to content

Commit 6fffe6e

Browse files
Enforce HTTPS scheme and root URL in local environment; add .gitignore files for announcement and pulsa directories; update composer.json to include laravel-backup-complete-restore package
1 parent 8999ccd commit 6fffe6e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

app/Providers/AppServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public function register(): void
2121
public function boot(): void
2222
{
2323
if ($this->app->environment('local')) {
24-
URL::forceRootUrl(env('APP_URL'));
25-
URL::forceScheme('https');
26-
}
24+
URL::forceRootUrl(env('APP_URL'));
25+
URL::forceScheme('https');
26+
}
2727
}
2828
}

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"php": "^8.2",
2525
"fidum/laravel-nova-metrics-polling": "^1.0",
2626
"intervention/image-laravel": "*",
27+
"klytron/laravel-backup-complete-restore": "^1.5",
2728
"laravel/framework": "^12.0",
2829
"laravel/nova": "^5.0",
2930
"laravel/tinker": "^2.10.1",
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

0 commit comments

Comments
 (0)