Files
notification/services/auth/config/settings/local.py
A'zamov Samandar dd0da49eb9 auth service created
2025-04-19 14:58:55 +05:00

12 lines
336 B
Python

from config.settings.common import * # noqa
from config.settings.common import (ALLOWED_HOSTS, INSTALLED_APPS,
REST_FRAMEWORK)
INSTALLED_APPS += ["django_extensions"]
ALLOWED_HOSTS += ["127.0.0.1", "192.168.100.26"]
REST_FRAMEWORK["DEFAULT_THROTTLE_RATES"] = {
"user": "60/min",
}