This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
forked from rwestgeest/propile
-
Notifications
You must be signed in to change notification settings - Fork 8
Heroku
David Boissier edited this page Nov 20, 2013
·
1 revision
Get the toolbelt from https://toolbelt.heroku.com/
Clone the project with the url https://github.com/agile-france/propile.git
- 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
- 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
andbundle exec rspec spec/
- First push on the
origin
branch withgit push origin master
- At last, push on the ``heroku
with
git push heroku master`