Files
WebChecker--Web-app-/wsgi.py
T

17 lines
317 B
Python

"""
wsgi.py — Gunicorn entry point for Bid Checker.
Usage:
gunicorn --bind unix:/run/webchecker/webchecker.sock \
--workers 4 \
--timeout 120 \
wsgi:application
"""
from app import create_app
application = create_app()
if __name__ == '__main__':
application.run()