https://github.com/launchscout/sentry
Our Sentry instance
https://github.com/launchscout/sentry
Last synced: 11 months ago
JSON representation
Our Sentry instance
- Host: GitHub
- URL: https://github.com/launchscout/sentry
- Owner: launchscout
- Created: 2014-06-22T17:55:32.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2022-07-07T22:58:13.000Z (about 4 years ago)
- Last Synced: 2025-05-21T12:51:33.144Z (about 1 year ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gaslight's [Sentry](https://getsentry.com/welcome/)

## Development
It's a Django application, so there's a little bit of setup involved
unless you're already Python-ing. You should almost certainly setup
[virtualenv](http://virtualenv.readthedocs.org/en/latest/) if you haven't
already.
You'll need to create a [GitHub OAuth application][ghapp] in order to use the
GitHub accounts on production. You can skip this step if you just want
to run a local instance and won't be cloning production data.
1. `git clone git@github.com:gaslight/sentry.git`
1. `cd sentry`
1. `pip install`
1. (optional) `bin/data`
If you're using production data, you'll have to start the application
with the GitHub OAuth environment variables, like this:
```sh
GITHUB_APP_ID=app_id_goes_here \
GITHUB_API_SECRET=secret_goes_here \
DATABASE_URL=postgres://localhost/sentry_development \
sentry --config=sentry.conf.py start
```
Otherwise, you just need the `DATABASE_URL`:
```sh
DATABASE_URL=postgres://localhost/sentry_development \
sentry --config=sentry.conf.py start
```
## Deploy
We're running on [Heroku](https://sentry.gaslight.co), so deployment is
just a git push away. You'll need access to the application, which lives
in the gaslight heroku organization.
### Setup
1. Add the Heroku remote:
`git remote add heroku git@heroku.com:gaslight-sentry.git`
1. (optional) Fetch
`git fetch heroku`
1. Push
`git push heroku`
[ghapp]: https://github.com/settings/applications/