Created
June 10, 2020 14:33
-
-
Save roelofjan-elsinga/def7668a00525601342d7b044c5fc300 to your computer and use it in GitHub Desktop.
An Ansible example of a handlers file
This file contains hidden or 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
- 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