From 2f238899d92602097c023abea5b88cdf31337adc Mon Sep 17 00:00:00 2001 From: yuuki <> Date: Tue, 13 Feb 2024 10:17:28 +0900 Subject: [PATCH] =?UTF-8?q?config=E3=81=AE=E5=88=9D=E6=9C=9F=E5=80=A4?= =?UTF-8?q?=E3=82=92=E5=BE=A9=E5=85=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index cd8f61d..68347c5 100644 --- a/config.py +++ b/config.py @@ -36,14 +36,14 @@ PREVIEW_TYPE = 'mp3' # MongoDB server settings. MONGO = { - 'host': ['mongo:27017'], + 'host': ['127.0.0.1:27017'], 'database': 'taiko' } # Redis server settings, used for sessions + cache. REDIS = { 'CACHE_TYPE': 'redis', - 'CACHE_REDIS_HOST': 'redis', + 'CACHE_REDIS_HOST': '127.0.0.1', 'CACHE_REDIS_PORT': 6379, 'CACHE_REDIS_PASSWORD': None, 'CACHE_REDIS_DB': None