Skip to content

Instantly share code, notes, and snippets.

@roelofjan-elsinga
Created June 10, 2020 14:33
Show Gist options
  • Save roelofjan-elsinga/def7668a00525601342d7b044c5fc300 to your computer and use it in GitHub Desktop.
Save roelofjan-elsinga/def7668a00525601342d7b044c5fc300 to your computer and use it in GitHub Desktop.
An Ansible example of a handlers file
- name: install_composer_deps
script: composer install --no-scripts --no-dev
- name: cache_laravel_config
script: "php artisan config:cache"
- name: clear_laravel_views
script: "php artisan view:clear"
- name: run_laravel_migrations
script: "php artisan migrate --force"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment