From 6600175b6282d0264a494bb72b2236dfbfaf71fc Mon Sep 17 00:00:00 2001 From: seoiiwon Date: Sun, 30 Nov 2025 17:38:53 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20fix:=20update=20envs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/config.py b/core/config.py index e6f2fe9..25707aa 100644 --- a/core/config.py +++ b/core/config.py @@ -9,7 +9,7 @@ class JwtSetting(BaseSettings): JWT_REFRESH_TOKEN_EXPIRE_DAYS: int = 0 # refresh token 만료 일 class Config: - env_file = ".env.dev" + env_file = ".env" env_file_encoding = "utf-8" extra = "ignore" @@ -24,7 +24,7 @@ class KakaoSettings(BaseSettings): KAKAO_PROFILE_URL: str = "" class Config: - env_file = ".env.dev" + env_file = ".env" env_file_encoding = "utf-8" extra = "ignore" @@ -34,7 +34,7 @@ class GPTSetting(BaseSettings): OPENAI_API_KEY: str = "" class Config: - env_file = ".env.dev" + env_file = ".env" env_file_encoding = "utf-8" extra = "ignore" @@ -47,7 +47,7 @@ class AWSSettings(BaseSettings): AWS_STORAGE_BUCKET_NAME: str = "" class Config: - env_file = ".env.dev" + env_file = ".env" env_file_encoding = "utf-8" extra = "ignore" @@ -58,7 +58,7 @@ class RedisSettings(BaseSettings): REDIS_PORT: int class Config: - env_file = ".env.dev" + env_file = ".env" env_file_encoding = "utf-8" extra = "ignore"