Production on Heroku
Installing and updating Botmetrics on Heroku
Deploying Botmetrics to Heroku
You can deploy Botmetrics to your Heroku account with one click.
Updating your Heroku installation
- Clone the repo to your local computer.
- Setup a Heroku git remote for your local instance
heroku git:remote -a <your-app-name>
- For the first time, you will need to run
git push -f heroku master
- For subsequent updates, run
git pull --rebase origin master && git push heroku master
- Run
heroku run rake db:migrate
for database migrations that need to
happen.
Updated less than a minute ago