From 02b420d5812b62ff51ea42a50abc4fee8f9f0411 Mon Sep 17 00:00:00 2001 From: codeking Date: Tue, 9 Dec 2025 15:42:14 +0100 Subject: [PATCH] Update various domain references --- core/Constants.py | 4 ++-- pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/Constants.py b/core/Constants.py index 96a5cca..ee1a514 100644 --- a/core/Constants.py +++ b/core/Constants.py @@ -6,8 +6,8 @@ import os @dataclass(frozen=True) class Constants: - SP_API_BASE_URL: Final[str] = os.environ.get('SP_API_BASE_URL') or 'https://api.simplifiedprivacy.is/api/v1' - PING_URL: Final[str] = os.environ.get('PING_URL') or 'https://api.simplifiedprivacy.is/api/v1/health' + SP_API_BASE_URL: Final[str] = os.environ.get('SP_API_BASE_URL') or 'https://api.hydraveil.net/api/v1' + PING_URL: Final[str] = os.environ.get('PING_URL') or 'https://api.hydraveil.net/api/v1/health' HV_CLIENT_PATH: Final[str] = os.environ.get('HV_CLIENT_PATH') HV_CLIENT_VERSION_NUMBER: Final[str] = os.environ.get('HV_CLIENT_VERSION_NUMBER') diff --git a/pyproject.toml b/pyproject.toml index d5bcfdf..6921fb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,8 +22,8 @@ dependencies = [ ] [project.urls] -Homepage = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core" -Issues = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core/issues" +Homepage = "https://git.simplifiedprivacy.com/codeking/sp-hydra-veil-core" +Issues = "https://git.simplifiedprivacy.com/codeking/sp-hydra-veil-core/issues" [build-system] requires = ["hatchling"]