Last active
June 5, 2023 17:45
-
-
Save klonos/fe7b0b070697cf699646edd5c007db02 to your computer and use it in GitHub Desktop.
Backdrop Lando config
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
name: ??? | |
# Use existing Backdrop recipe, then customize below. | |
recipe: backdrop | |
config: | |
# Where Backdrop resides, relative to this file. | |
webroot: docroot | |
database: mariadb | |
php: '?.?' | |
drush: '?.?.?' | |
backdrush: 1.x-1.x | |
# Installs the latest 2.x version of composer instead of the default 2.x. | |
composer_version: 2 | |
proxy: | |
mailhog: | |
- mail.???.lndo.site | |
phpmyadmin: | |
- db.???.lndo.site | |
services: | |
appserver: | |
build_as_root: | |
# Install xhprof. | |
- pecl install xhprof && echo "extension=xhprof.so" > $PHP_INI_DIR/conf.d/xhprof.ini | |
extras: | |
- apt-get update -y | |
- apt-get install sudo nano jq -y | |
- wget -qO bee.zip https://github.com/backdrop-contrib/bee/archive/1.x-1.x.zip | |
- unzip -q bee.zip && rm bee.zip | |
- mv bee-1.x-1.x /usr/local/bin/bee | |
phpmyadmin: | |
type: phpmyadmin | |
hosts: database | |
mailhog: | |
type: mailhog | |
hosts: mailhog | |
hogfrom: | |
- appserver | |
tooling: | |
bee: | |
service: appserver | |
cmd: /usr/local/bin/bee/bee.php | |
phpcs: | |
service: appserver | |
cmd: | |
- "/app/docroot/vendor/bin/phpcs -n --report=full --standard=Backdrop --ignore=vendor/*,README.md --extensions=install,module,php,inc,theme" | |
# Allow Drush to be run from any directory. | |
drush: | |
service: appserver | |
cmd: drush --root=/app/docroot --uri=http://???.lndo.site | |
# Create a snapshot of the site. | |
snapshot: | |
service: appserver | |
description: Create a snapshot of the site | |
cmd: | |
- mysqldump --add-drop-database -Bu root -h database -P 3306 backdrop > /app/backdrop.sql | |
- gzip -f /app/backdrop.sql | |
- cd /app/docroot/files/config_* && tar -czf /app/config.tar.gz active | |
- echo 'Snapshot created successfully' | |
# Revert the site using the snapshot. | |
revert: | |
service: appserver | |
description: Reset the site using the snapshot | |
cmd: | |
- cd /app/docroot/files/config_* && rm -r active && tar -xzf /app/config.tar.gz | |
- gunzip /app/backdrop.sql.gz | |
- mysql -u root -h database -P 3306 backdrop < /app/backdrop.sql | |
- gzip -f /app/backdrop.sql | |
- echo 'Site reverted successfully' | |
# Reset the site (drop db and remove config files). | |
reset: | |
service: appserver | |
description: Reset the site (drop db and remove config files) | |
cmd: | |
- drush sql-drop -y | |
- cd /app/docroot/files/config_* && rm -r active | |
- drush si standard --db-url=mysql://root:backdrop@localhost/backdrop --site-name=??? | |
# Currently, specifying the admin account password is not possible. | |
# See: https://github.com/backdrop-contrib/drush/issues/151 | |
- drush upwd admin --password="password" | |
# INstall and enable devel and devel_generate. | |
- drush dl devel | |
- drush en devel devel_generate | |
# Enable all errors, and disable CSS and JS aggregation. | |
- cd active | |
- jq --indent 4 '.error_level = "all" | .preprocess_css = 0 | .preprocess_js = 0' system.core.json > tmp.$$.json | |
- mv tmp.$$.json system.core.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment