Last active
March 3, 2021 16:11
-
-
Save nicomollet/c900c9ee75e464fa581ec54d8459ec11 to your computer and use it in GitHub Desktop.
Revisions
-
nicomollet revised this gist
Mar 3, 2021 . 1 changed file with 5 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -36,9 +36,8 @@ events: - appserver: wp plugin deactivate wp-rocket #- appserver: wp plugin update --all && wp language plugin update --all && wp theme update --all && wp language theme update --all && wp core update --force && wp language core update excludes: - wp-content/uploads - wp-content/cache - wp-content/upgrade - wp-content/languages - sql -
nicomollet created this gist
Jan 6, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ name: SITENAME recipe: wordpress config: webroot: . env: dev via: apache #nginx doesn't work, don't know why php: 7.3 #xdebug: true database: mysql services: pma: type: phpmyadmin hosts: - database mailhog: type: mailhog hogfrom: - appserver appserver: run: tooling: composer: service: appserver install:wordpress: service: appserver cmd: - wp core download && wp config create --dbname=wordpress --dbuser=wordpress --dbpass=wordpress --dbhost=database proxy: pma: - pma.SITENAME.lndo.site mailhog: - mail.SITENAME.lndo.site events: post-db-import: - appserver: wp search-replace "wordpress.l" "SITENAME.lndo.site" --all-tables --verbose --skip-columns=guid - appserver: wp plugin deactivate wp-rocket #- appserver: wp plugin update --all && wp language plugin update --all && wp theme update --all && wp language theme update --all && wp core update --force && wp language core update excludes: - vendor - node_modules - modules/contrib - cache - uploads - .sass_cache