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

@@ -8,7 +8,7 @@ from api.config_analyzer import ConfigAnalyzer
# Initialize analyzer
config_dir = Path('configs')
analyzer = ConfigAnalyzer(config_dir, base_url="https://skillseekersweb.com")
analyzer = ConfigAnalyzer(config_dir, base_url="https://api.skillseekersweb.com")
# Test analyzing all configs
print("Testing config analyzer...")