Boilerplate for a modern wordpress theme development environment based on:
Sage theme setup by robbinworks. Go and show him some love 🌟
- Clone this repository:
$ git clone https://github.com/vladbbr/bedrock-sage-vue-starter
- Run
$ composer install
- Update environment variables in the
.env
file:
- Database variables
DB_NAME
- Database nameDB_USER
- Database userDB_PASSWORD
- Database passwordDB_HOST
- Database host- Optionally, you can define
DATABASE_URL
for using a DSN instead of using the variables above (e.g.mysql://user:password@127.0.0.1:3306/db_name
)
WP_ENV
- Set to environment (development
,staging
,production
)WP_HOME
- Full URL to WordPress home (https://example.com)WP_SITEURL
- Full URL to WordPress including subdirectory (https://example.com/wp)AUTH_KEY
,SECURE_AUTH_KEY
,LOGGED_IN_KEY
,NONCE_KEY
,AUTH_SALT
,SECURE_AUTH_SALT
,LOGGED_IN_SALT
,NONCE_SALT
- Generate with wp-cli-dotenv-command
- Generate with our WordPress salts generator
- Go to your theme's folder (i.e.
web/app/themes/sage
) and run:
$ composer install
$ yarn
-
Set the document root on your webserver to Bedrock's
web
folder:/path/to/site/web/
-
Access WordPress admin at
https://example.com/wp/wp-admin/
- Bedrock - https://roots.io/bedrock/docs/.
- Sage - https://roots.io/sage/docs/theme-installation/
- Tailwinds - https://tailwindcss.com/docs/installation/
- Laravel Mix - https://laravel.com/docs/5.8/mix