Skip to content

Instantly share code, notes, and snippets.

View patternandshape's full-sized avatar
🎨

Molly Doran patternandshape

🎨
View GitHub Profile
@joekarasek
joekarasek / deploy-to-github-pages.sh
Last active August 25, 2016 16:37
Github pages deploy setup for ember
echo "Switch to gh-pages branch"
git checkout gh-pages
git merge master
echo "Clean up"
rm -rf dist
echo "Create new production build"
ember build --environment production