############################################################################## # REQUIRED SETTINGS (you will need these) # ############################################################################## ############################################################################## # COMMON SETTINGS (you may need these) # ############################################################################## # If you don't have docker-compose, but do have newer docker, uncomment this #DOCKER_COMPOSE=docker compose # Uncomment the following line if you need `sudo` to run Docker commands #DOCKER_SUDO=1 # Wordpress debugging WORDPRESS_DEBUG=1 ############################################################################## # RARE SETTINGS (you probably won't need these) # ############################################################################## # TODO: insert template "connect to a remote database" settings here ############################################################################## # INFINITE NERD DEPTH SETTINGS (if you're changing these, good luck!) # ############################################################################## # Docker container names, probably just needs to be set once per project PROJECT_NAME=$REPO_NAME_SNAKE # Site URL, also just needs to be set once per project SITE_URL=$REPO_NAME_SNAKE.tld # Multi-site config #WORDPRESS_CONFIG_EXTRA="define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'frms.localhost'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); define('SUNRISE', true);" # Use composer for plugin installation #USE_COMPOSER=1