Practiced wercker deployment of Wintersmith builds
Wercker, Wintersmith, Jade, Markdown
Markdown Content, Automated gh-pages.
- Wintersmith gives a template from which you can easily make a blog with
.mdfiles. - install with
npm install -g wintersmith - start with
wintersmith new [project name] wintersmith previewfrommaster branchto see full site pre-build.- The wercker deploy at
gh-pagesworks by runningwintersmith buildand pushing the/builddirectory (Which contains the static HTML and associated CSS) to thegh-pagesbranch - wercker depends on creating and linking an 'app' on their site to a repo such as this one. Whenever
masterbranch updates, wercker will run thewercker.ymlfile, much like a Grunt or Gulp process- wercker 'steps' are like npm modules in which you have to define one that either exists in marketplace or author your own.
- .yml files cannot have tabs.
- wercker build messes up with pathing for CSS files, etc. searches vtange.github.io/main.css instead of vtange.github.io/repo-name/main.css
- too blog-like. generates pages out of
.jadeand markdown(.md) files. If you're going to make mulitple unique microsites, might as well do it via Express.