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>
10 lines
387 B
Python
10 lines
387 B
Python
"""Wrapper — اسکریپت اصلی در backend/services/identity-access/scripts/patch_keycloak_client.py"""
|
|
import runpy
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
ROOT = Path(__file__).resolve().parents[3]
|
|
SCRIPT = ROOT / "backend/services/identity-access/scripts/patch_keycloak_client.py"
|
|
sys.path.insert(0, str(SCRIPT.parent))
|
|
runpy.run_path(str(SCRIPT), run_name="__main__")
|