core/tests/auth/test_settings.py
Untone 7bbb847eb1
All checks were successful
Deploy on push / deploy (push) Successful in 1m36s
tests, maintainance fixes
2025-05-16 09:22:53 +03:00

10 lines
330 B
Python

"""Тестовые настройки для OAuth"""
FRONTEND_URL = "https://localhost:3000"
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"},
}