Initial commit

This commit is contained in:
kddd21a
2026-07-29 10:47:40 +00:00
commit 402c3ec6ed
171 changed files with 10536 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
"""WSGI entry point for cPanel's Phusion Passenger application manager."""
import os
import sys
from pathlib import Path
APP_ROOT = Path(__file__).resolve().parent
if str(APP_ROOT) not in sys.path:
sys.path.insert(0, str(APP_ROOT))
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
from core.wsgi import application # noqa: E402, F401