dev-scripts/config/local/wordpress

24 lines
600 B
Plaintext
Raw Normal View History

2020-09-03 11:46:30 +00:00
## wordpress configuration - uncomment if using wordpress
2020-09-03 19:42:01 +00:00
export wp_user='admin'
2020-09-04 13:30:53 +00:00
export wp_pass='admin'
export wp_email='myemail@isnet.uk'
2020-09-03 11:46:30 +00:00
2020-09-04 13:30:53 +00:00
export wp_version='latest'
export wp_path='/var/www/html/wordpress'
export wp_locale='en_GB'
export wp_title='The WordPress'
2020-09-03 11:46:30 +00:00
2020-09-04 13:30:53 +00:00
export wp_db_name='wordpress'
export wp_db_user='wordpress'
export wp_db_pass='wordpress'
2020-09-03 11:46:30 +00:00
2020-09-04 13:30:53 +00:00
## list of themes to install - first one will be activated
export wp_themes="twentytwenty"
2020-09-03 11:46:30 +00:00
## list of plugins to install
2020-09-04 13:30:53 +00:00
export wp_plugins="akismet all-in-one-seo-pack"
2020-09-03 11:46:30 +00:00
2020-09-04 13:30:53 +00:00
## list of plugins to install and activate
export wp_plugins_active=""