04/30 Web Checker web app ver. 1.0

This commit is contained in:
2026-04-30 17:15:56 -04:00
parent feb8e5051c
commit cd63d5a020
39 changed files with 8031 additions and 1 deletions
+16
View File
@@ -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()