sideshowcoder / canned

Server to respond with fake API responses, by using a directory of files for finding out what to say!
213 stars 46 forks source link

Automate update documentation Webpage #13

Closed sideshowcoder closed 10 years ago

sideshowcoder commented 10 years ago

Currently the process of updating the documentation page involves

git checkout gh-pages
git checkout master -- README.md
echo "---\nlayout: index\n---" | cat - README.md > index.md
git add -A
git commit -m "update docs"
git push origin gh-pages

this is an error prone process, so It would be nice if we could do

make docs