first commit

This commit is contained in:
2025-08-20 21:22:28 +00:00
commit 70d29f9f95
26 changed files with 2558 additions and 0 deletions

10
app/wsgi.py Normal file
View File

@@ -0,0 +1,10 @@
"""
app/wsgi.py
Gunicorn entrypoint for SneakyScope.
"""
from . import create_app
# Gunicorn will look for "app"
app = create_app()