-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sh
37 lines (26 loc) · 918 Bytes
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# Your WP site name
WP_SITE_TITLE='CassidyWP Starter Block Theme'
# Your WP login details
WP_USER_NAME='example-name'
WP_USER_PASS='example-password'
WP_USER_EMAIL='[email protected]'
# Theme Slugs
DEFAULT_THEME_SLUG='twentytwentyfour'
CUSTOM_THEME_SLUG='cassidywp-starter-block-theme'
# Environment Settings
WP_ENVIRONMENT_TYPE='development'
WP_DEVELOPMENT_MODE='theme'
# TURN ON/OFF OTHER ASSETS:
## All-in-One WP Migration plugin
INSTALL_AIOM_PLUGIN=true
## All-in-One WP Migration Unlimited Extension plugin from local machine
INSTALL_LOCAL_AIOMUE_PLUGIN=true
## Spatie Ray connection files to work with Docker containers
INSTALL_RAY_CONNECTIONS=true
## VSCode workspace settings to follow WordPress coding standards
INSTALL_VSCODE_SETTINGS=true
## Local Git repo and .gitignore file for the project
INSTALL_GIT=true
## WordPress debugging settings with log file
INSTALL_WP_DEBUG_SETTING=true