dev #9

Merged
avm merged 100 commits from dev into main 2026-03-17 16:06:44 +03:00
Showing only changes of commit 10fc1d96eb - Show all commits

View File

@@ -18,14 +18,14 @@ DATABASES = {
"NAME": "mostovik",
"USER": "postgres",
"PASSWORD": "postgres",
"HOST": "127.0.0.1",
"HOST": "10.10.0.112",
"PORT": "5432",
}
}
# Celery
CELERY_BROKER_URL = "redis://redis:6379/0"
CELERY_RESULT_BACKEND = "redis://redis:6379/0"
CELERY_BROKER_URL = "redis://10.10.0.112:6379/0"
CELERY_RESULT_BACKEND = "redis://10.10.0.112:6379/0"
CELERY_ACCEPT_CONTENT = ["json"]
CELERY_TASK_SERIALIZER = "json"
CELERY_RESULT_SERIALIZER = "json"
@@ -35,7 +35,7 @@ CELERY_TIMEZONE = "Europe/Moscow"
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "redis://redis:6379/1",
"LOCATION": "redis://10.10.0.112:6379/1",
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
},