aboutsummaryrefslogtreecommitdiff
path: root/devel/notmuch-web/nmgunicorn.py
blob: e71ba12a2c0f93c1f3c1272b1509de5ea206f2e5 (plain)
#!/usr/bin/env python3

# to launch nmweb from gunicorn.

from nmweb import urls, index, search, show
import web

app = web.application(urls, globals())

# get the wsgi app from web.py application object
wsgiapp = app.wsgifunc()