This commit is contained in:
2023-11-01 21:11:32 +02:00
parent 1442b68503
commit d7afa5a322
3 changed files with 88 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Deployment
Here is an example on how you can deploy with an envoy tasks. Of course make sure to add any other relevant operations for your server setup. Such as permissions.
```php
@task('deploy')
git pull origin master
composer install --optimize-autoloader --no-dev
rm {{ $projectPath }}/public/live
php artisan lucent:schemas
php artisan lucent:livelink
php artisan generate:static
@endtask
```