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"