feat(api): Update base URL to api.skillseekersweb.com

- Update default base_url in ConfigAnalyzer to api.skillseekersweb.com
- Update website URL in API root endpoint
- Update test_api.py to use custom domain
- Prepare for custom domain deployment
This commit is contained in:
yusyus
2025-11-30 18:26:57 +03:00
parent 7224a988bd
commit c6602da203
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ class ConfigAnalyzer:
"testing": ["test", "testing", "pytest", "jest"]
}
def __init__(self, config_dir: Path, base_url: str = "https://skillseekersweb.com"):
def __init__(self, config_dir: Path, base_url: str = "https://api.skillseekersweb.com"):
"""
Initialize config analyzer

View File

@@ -48,7 +48,7 @@ async def root():
"/docs": "API documentation",
},
"repository": "https://github.com/yusufkaraaslan/Skill_Seekers",
"website": "https://skillseekersweb.com"
"website": "https://api.skillseekersweb.com"
}