wordpress-starter/.env.sample

39 lines
1.8 KiB
Plaintext
Raw Normal View History

2024-04-24 20:20:03 +00:00
##############################################################################
# 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) #
##############################################################################
2024-05-16 00:53:00 +00:00
# TODO: insert template "connect to a remote database" settings here
2024-04-24 20:20:03 +00:00
##############################################################################
# INFINITE NERD DEPTH SETTINGS (if you're changing these, good luck!) #
##############################################################################
# Docker container names, probably just needs to be set once per project
2024-05-16 00:53:00 +00:00
PROJECT_NAME=$REPO_NAME_SNAKE
2024-04-24 20:20:03 +00:00
# Site URL, also just needs to be set once per project
2024-05-16 00:53:00 +00:00
SITE_URL=$REPO_NAME_SNAKE.tld
2024-04-24 20:20:03 +00:00
# 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