""" Label Audit Server ================== Caution: This server is for production. If you use it in your dev environment, it may not work as intended. Instead, you should use dev.py instead. Includes health check at /hello """ from raven.contrib import flask from labelaudit import api from labelaudit import config from labelaudit import handlers # noqa if config.SENTRY_DSN: api.app.config['SENTRY_DSN'] = config.SENTRY_DSN flask.Sentry(api.app) app = api.app