Add deployment script

This commit is contained in:
Nicholas Kariniemi 2014-01-12 18:59:46 +02:00
parent 73d965f8f7
commit 8da6438b79

9
deploy.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
git branch -D deploy
git checkout -b deploy
lein cljsbuild once prod
git add --force public/js/grub.js
git commit -m "Add client code for Heroku deployment"
git push --force heroku deploy:master
git checkout master