""" Grass Server. This server follows requirements set for amazon preconfigured docker. You can learn more here: http://amzn.to/1CJ6tDs. Caution: this server is for live, if you use it in your dev environment, it may not work as intended. """ from analytics import api from analytics import handlers # noqa from analytics.connectors import sentry # noqa: F401 — triggers sentry_sdk.init() app = api.app if __name__ == '__main__': app.run()