- Node: https://nodejs.org/
- Yarn: https://yarnpkg.com/
- Gulp: https://gulpjs.com/
- EditorConfig for VS Code
- ESLint
- Stylelint
yarn install
- installs required node modulesgulp
- run tasks defined in gulpfile.js
gulp watch
- watches files specified in gulpfile.js for changes and runs the specified tasks on change.
Configs are stored in public/configs
folder.
- Manually copy the
wp-config.local.example.php
file to a new file calledwp-config.local.php
and fill-in your own values. This file is for sensitive information and will not be stored in version control. - Environments: Set the correct environments you wish to support via the file
wp-config.env.php
. Anywp-config.{environment}.php
file not used can be removed. Remember to remove the reference inwp-config.env.php
aswell. - If a setting is the same across all environments (e.g. authentication unique keys and salts), add to
wp-config.default.php
See https://github.com/studio24/wordpress-multi-env-config for more information.