Skip to content

Commit e49fc18

Browse files
committed
add success message after install command is done
Took 13 minutes
1 parent 29f5d16 commit e49fc18

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Commands/InstallCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ public function handle(): int
7474
copy(__DIR__ . '/../../resources/middleware/HandleInertiaRequests.php', base_path('app/Http/Middleware/HandleInertiaRequests.php'));
7575
copy(__DIR__ . '/../../routes/web.php', base_path('routes/web.php'));
7676

77+
$this->info('Your application is ready!');
78+
$this->info('Please run the following command');
79+
$this->info('npm i && npm run dev');
80+
7781
return self::SUCCESS;
7882
}
7983
}

0 commit comments

Comments
 (0)