core/tests/auth/test_settings.py

10 lines
330 B
Python
Raw Normal View History

2025-05-16 06:11:39 +00:00
"""Тестовые настройки для OAuth"""
2025-05-16 06:22:53 +00:00
FRONTEND_URL = "https://localhost:3000"
2025-05-16 06:11:39 +00:00
OAUTH_CLIENTS = {
"GOOGLE": {"id": "test_google_id", "key": "test_google_secret"},
"GITHUB": {"id": "test_github_id", "key": "test_github_secret"},
"FACEBOOK": {"id": "test_facebook_id", "key": "test_facebook_secret"},
}