-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: start moving to config files for command configuration.
- Loading branch information
1 parent
6d32f59
commit 9b24b92
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
|
||
return [ | ||
|
||
/** | ||
* These commands will be automatically started when running `php artisan solo` | ||
*/ | ||
'autostart_commands' => [ | ||
EnhancedTailCommand::make('Logs', 'tail -f -n 100 '.storage_path('logs/laravel.log')), | ||
'Vite' => 'pnpm run dev', | ||
// 'HTTP' => 'php artisan serve', | ||
'About' => 'php artisan solo:about', | ||
'Queue' => 'php artisan horizon:watch --without-tty', | ||
], | ||
|
||
/** | ||
* These commands will appear in their panes, but you will have to elect to start them. | ||
*/ | ||
'lazy_commands' => [ | ||
// ... | ||
], | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters