2015-12-11 14:04:11 +01:00
# wp-theme
2016-03-19 01:25:23 +01:00
> WordPress theme for ascribe's landing page and blog
2015-12-11 14:04:11 +01:00
2016-03-19 02:31:44 +01:00
[ ![Codeship Status for ascribe/wp-theme ](https://codeship.com/projects/33c7d280-cf2d-0133-1c09-5ed74b30bb55/status?branch=master )](https://codeship.com/projects/141150)
2015-12-11 14:04:11 +01:00
## Prerequisites
- node & npm
- composer
```bash
npm install & & composer
```
## Development
On top of compiling css & js files, this starts a local, live-reloading server with BrowserSync:
```bash
gulp
```
The task assumes the following:
- WordPress exposed via MAMP under http://localhost:8888
The following compiles css & js files only:
```bash
gulp build
```
2016-03-19 01:25:23 +01:00
2016-03-19 01:46:36 +01:00
## Deployment: Continuous Delivery
2016-03-19 01:25:23 +01:00
The site gets built & deployed automatically via Codeship under the following conditions:
- every push builds the site
- every push to the master branch initiates a live deployment
2016-03-19 01:46:36 +01:00
The [deployment script ](_ci/deploy.sh ) requires the following environment variables to be set:
2016-03-21 11:41:02 +01:00
variable | description
---|---
`$DEPLOY_SRC` | source of CI build artifacts. On Codeship this is usually `~/src/github.com/ascribe/wp-theme/ascribe/`
`$DEPLOY_USER` | user for connecting to deploy server
`$DEPLOY_HOST` | hostname of deploy server
`$DEPLOY_PATH` | path to deploy into on deploy server, should be `PATH_ON_SERVER/wp-content/themes/`