You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
|
|
|
|
# Rest Framework configuration
|
|
REST_FRAMEWORK = {
|
|
'DATETIME_FORMAT': "%Y-%m-%dT%H:%M:%S%z",
|
|
# Use Django's standard `django.contrib.auth` permissions,
|
|
# or allow read-only access for unauthenticated users.
|
|
'DEFAULT_PERMISSION_CLASSES': [
|
|
'rest_framework.permissions.IsAuthenticated',
|
|
],
|
|
'DEFAULT_AUTHENTICATION_CLASSES': [
|
|
'rest_framework.authentication.BasicAuthentication',
|
|
'rest_framework.authentication.TokenAuthentication',
|
|
'rest_framework.authentication.SessionAuthentication',
|
|
]
|
|
}
|
|
|
|
# EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
|
# EMAIL_HOST = 'smtp-xlr.alwaysdata.net'
|
|
# EMAIL_PORT = 587
|
|
# EMAIL_HOST_USER = 'automatic@padelclub.app'
|
|
# EMAIL_HOST_PASSWORD = 'XLRSport$2024'
|
|
# EMAIL_USE_TLS = True
|
|
# DEFAULT_FROM_EMAIL = 'Padel Club <automatic@padelclub.app>'
|
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
|
EMAIL_HOST = 'smtp-xlr.alwaysdata.net'
|
|
EMAIL_PORT = 587
|
|
EMAIL_HOST_USER = 'xlr@alwaysdata.net'
|
|
EMAIL_HOST_PASSWORD = 'XLRSport$2024'
|
|
EMAIL_USE_TLS = True
|
|
DEFAULT_FROM_EMAIL = 'Padel Club <xlr@alwaysdata.net>'
|
|
|
|
CACHES = {
|
|
'default': {
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
},
|
|
'qr-code': {
|
|
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
|
'LOCATION': 'qr-code-cache',
|
|
'TIMEOUT': 3600
|
|
}
|
|
}
|
|
|
|
QR_CODE_CACHE_ALIAS = 'qr-code'
|
|
|
|
SYNC_APPS = {
|
|
'sync': {},
|
|
'tournaments': { 'exclude': ['Log', 'FailedApiCall'] }
|
|
}
|
|
|