Skip to content

Instantly share code, notes, and snippets.

@betawax
Last active December 30, 2015 08:18
Show Gist options
  • Save betawax/7801255 to your computer and use it in GitHub Desktop.
Save betawax/7801255 to your computer and use it in GitHub Desktop.
fortrabbit Laravel deployment file
---
version: 1
strategy: fullsync
excludes:
- storage
composer:
mode: always
method: install
post-deploy:
script: artisan
args: ['route:cache']
@ostark
Copy link

ostark commented Dec 5, 2013

what about a direct artisan call?

post-deploy:
    script: artisan
    args: ['dump-autoload']

@betawax
Copy link
Author

betawax commented Dec 10, 2013

You have to know it best. :) Updated the deployment file. Thanks!

@aliuygur
Copy link

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