From acdd6c8e36e6d1f938f22ad6ef0e64419bbce97b Mon Sep 17 00:00:00 2001 From: Daniil Date: Thu, 30 Apr 2026 00:56:25 +0300 Subject: [PATCH] fix: add cors domains --- cpv3/infrastructure/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpv3/infrastructure/settings.py b/cpv3/infrastructure/settings.py index e6defeb..1dc8590 100644 --- a/cpv3/infrastructure/settings.py +++ b/cpv3/infrastructure/settings.py @@ -21,8 +21,8 @@ class Settings(BaseSettings): "http://localhost:3000", "http://localhost:3001", "http://localhost:8000", - "http://192.168.1.47:3000", - "http://192.168.1.47", + "https://app.trimgu.ru/", + "https://api.trimgu.ru/", ], alias="CORS_ALLOWED_ORIGINS", )