1
0

[claude] Fix GITEA_API default to VPS address (#1177) (#1178)

Co-authored-by: Claude (Opus 4.6) <claude@hermes.local>
Co-committed-by: Claude (Opus 4.6) <claude@hermes.local>
This commit is contained in:
2026-03-23 20:59:54 +00:00
committed by Timmy Time
parent d796fe7c53
commit 74bf0606a9
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ def _get_gitea_api() -> str:
if api_file.exists():
return api_file.read_text().strip()
# Default fallback
return "http://localhost:3000/api/v1"
return "http://143.198.27.163:3000/api/v1"
GITEA_API = _get_gitea_api()