TorbatYar/infrastructure/keycloak/scripts/patch_frontend_client.py
Mortezakoohjani 800b0ba2c5 Deploy TorbatYar for torbatyar.ir with nginx multi-tenant routing.
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>
2026-07-21 21:43:33 +03:30

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__")