Add deployment script
This commit is contained in:
parent
73d965f8f7
commit
8da6438b79
1 changed files with 9 additions and 0 deletions
9
deploy.sh
Executable file
9
deploy.sh
Executable 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
|
Loading…
Reference in a new issue