Last active
December 30, 2015 08:18
-
-
Save betawax/7801255 to your computer and use it in GitHub Desktop.
fortrabbit Laravel deployment file
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
--- | |
version: 1 | |
strategy: fullsync | |
excludes: | |
- storage | |
composer: | |
mode: always | |
method: install | |
post-deploy: | |
script: artisan | |
args: ['route:cache'] |
You have to know it best. :) Updated the deployment file. Thanks!
how can i run multiple post-deploy scripts ?
it is not working
post-deploy:
- script: artisan
args: ["dump-autoload"]
- script: artisan
args: ["migrate:refresh --seed"]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
what about a direct artisan call?