Custom, lean WordPress theme for tm.id.au.
Designed to be converted to a static site with the Simply Static plugin.
From your wp-content/themes
directory, run:
git clone https://github.com/tdmalone/tm-id-au.git
cd tm-id-au
yarn
yarn build
Then activate the theme via Appearance -> Themes
in WordPress admin.
To get started:
yarn
composer install
To build once:
yarn build
To turn on watch mode (useful during development):
yarn watch
JS and Sass linting are handled by Node packages (and thus via Yarn scripts); PHP linting is handled via a Composer package (and thus via Composer scripts):
yarn lint
composer lint
To apply lint fixes automatically (use with caution - make sure your working tree is clean first):
yarn fix
composer fix
Run tests (which may or may not do much yet!):
yarn test
composer test
Deployment of this repo to tm.id.au is handled by Travis CI.
After linting and tests pass, the custom .deploy.sh script is run. This performs a number of steps to deploy to the firewalled EC2 instance that my WordPress instance is running on. It triggers static site generation via a custom WP-JSON endpoint for the Simply Static plugin, which then triggers syncing to S3 via an on-server script.