Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
437 B
Python
15 lines
437 B
Python
"""shared: کتابخانه مشترک بین سرویسهای SuperApp.
|
|
|
|
این پکیج شامل قراردادها و ابزارهای مشترک است تا بین همه سرویسها
|
|
یکپارچگی حفظ شود (بدون وابستگی مستقیم به دیتابیس سرویس دیگر).
|
|
"""
|
|
|
|
__all__ = [
|
|
"tenant",
|
|
"security",
|
|
"events",
|
|
"pagination",
|
|
"exceptions",
|
|
"responses",
|
|
]
|