Skip to content

Commit

Permalink
Adding updates to the installation steps
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed Oct 4, 2024
1 parent 5560735 commit ec640c3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions wave/resources/views/install.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
@if(app()->isLocal())

@php
try {
$user = \App\Models\User::first();
header('Location: /');
exit;
} catch (\Illuminate\Database\QueryException $e) {
// Continue with the installation process
}
@endphp

<!DOCTYPE html>
<html lang="en">
<head>
Expand Down

0 comments on commit ec640c3

Please sign in to comment.