haldis/app/wsgi.py

17 lines
428 B
Python
Raw Normal View History

2023-04-19 21:48:59 +00:00
import sentry_sdk
from sentry_sdk.integrations.flask import FlaskIntegration
from waitress import serve
from app import create_app
from config import Configuration
if __name__ == "__main__":
if Configuration.SENTRY_DSN:
sentry_sdk.init(
dsn=Configuration.SENTRY_DSN,
integrations=[FlaskIntegration()]
)
app, app_mgr = create_app()
serve(app_mgr, host="0.0.0.0", port=8000)