04/30 Web Checker web app ver. 1.0
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
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()
|
||||
Reference in New Issue
Block a user