Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 946 Bytes

README.md

File metadata and controls

56 lines (38 loc) · 946 Bytes

Sentry instance

Shit happens — Be on top of it.

Deploy

Create the Heroku app

Create the app in the region you want

$ heroku create --region <region> y-sentry

Then set the proper buildpack

$ heroku config:set BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git

Push the code

$ git push heroku master

Set the required settings

$ heroku config:set SENTRY_URL_PREFIX="https://y-sentry.herokuapp.com"
$ heroku config:set SENTRY_KEY="a-great-unique-secret-string"
$ heroku config:set SENTRY_CONF="sentry.conf.py"

Add the services

$ heroku addons:add newrelic
$ heroku addons:add mandrill
$ heroku addons:add rediscloud
$ heroku addons:add heroku-postgresql:hobby-dev

Run the migrations

$ heroku run sentry upgrade

Create the superuser

$ heroku run sentry createsuperuser
$ heroku run sentry repair --owner=<username>