17 lines
321 B
Python
17 lines
321 B
Python
"""
|
|
wsgi.py — Gunicorn entry point for Website 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()
|