Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
David Boissier edited this page Nov 20, 2013 · 1 revision

Installation

Get the toolbelt from https://toolbelt.heroku.com/

Sources

Clone the project with the url https://github.com/agile-france/propile.git

Heroku settings

  • Exec heroku login and enter your credentials (the same from your heroku account). If ok, you should see your RSA key in the account settings in the web page.
  • Exec heroku config and you should see a list of production environment variables
  • modify the .git/config file by adding:
[remote "heroku"]
  url = [email protected]:call4paper-agileconf.git
  fetch = +refs/heads/*:refs/remotes/heroku
[heroku]
  remote = heroku

Deployment

  • Always execute a git pull to get all recent commit from the master before pushing on any remote branch
  • If you have some local commit, make sure that all tests pass before with rake and bundle exec rspec spec/
  • First push on the origin branch with git push origin master
  • At last, push on the ``herokuwithgit push heroku master`
Clone this wiki locally