Add Laravel Nova task to recipe/laravel (#3548)

* Add Laravel Nova task to recipe/laravel

* Update docs
This commit is contained in:
Pavel Bychko 2023-03-28 00:08:34 +03:00 committed by GitHub
parent 91b73c05f6
commit f3bafec466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -453,8 +453,16 @@ Check the status of the octane server.
### artisan:nova:publish
[Source](https://github.com/deployphp/deployer/blob/master/recipe/laravel.php#L241)
Publish all of the Laravel Nova resources.
### deploy
[Source](https://github.com/deployphp/deployer/blob/master/recipe/laravel.php#L240)
[Source](https://github.com/deployphp/deployer/blob/master/recipe/laravel.php#L247)
Deploys your project.

View File

@ -233,6 +233,13 @@ task('artisan:octane:stop', artisan('octane:stop'));
desc('Check the status of the octane server');
task('artisan:octane:status', artisan('octane:status'));
/*
* Nova.
*/
desc('Publish all of the Laravel Nova resources');
task('artisan:nova:publish', artisan('nova:publish'));
/**
* Main deploy task.
*/