Skip to content

Instantly share code, notes, and snippets.

@chrisglass
Forked from tmc/run_revel_on_heroku.sh
Created December 4, 2012 21:38
Show Gist options
  • Save chrisglass/4208991 to your computer and use it in GitHub Desktop.
Save chrisglass/4208991 to your computer and use it in GitHub Desktop.
run revel apps on heroku
☭ ~ $ revel new src/sweet_app
☭ ~ $ cd src/sweet_app/
☭ ~/sweet_app $ git init
☭ ~/sweet_app (master)$ cat > .godir
sweet_app
^C
☭ ~/sweet_app (master)$ git add .godir *
☭ ~/sweet_app (master)$ git ci -m"Initial"
☭ ~/sweet_app (master)$ heroku create --buildpack https://github.com/traviscline/heroku-buildpack-go-revel.git
☭ ~/sweet_app (master)$ git push heroku master
☭ ~/sweet_app (master)$ heroku open
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment