├── .gitignore ├── .travis.yml ├── Procfile ├── README.rst ├── app.json ├── requirements.in ├── requirements.txt ├── runtime.txt ├── sentry.conf.py └── uwsgi.ini /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | include/ 3 | lib/ 4 | local 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/.travis.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/Procfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/README.rst -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/app.json -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.11 2 | -------------------------------------------------------------------------------- /sentry.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/sentry.conf.py -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastmonkeys/sentry-on-heroku/HEAD/uwsgi.ini --------------------------------------------------------------------------------