File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class JwtSetting(BaseSettings):
99 JWT_REFRESH_TOKEN_EXPIRE_DAYS : int = 0 # refresh token λ§λ£ μΌ
1010
1111 class Config :
12- env_file = ".env.dev "
12+ env_file = ".env"
1313 env_file_encoding = "utf-8"
1414 extra = "ignore"
1515
@@ -24,7 +24,7 @@ class KakaoSettings(BaseSettings):
2424 KAKAO_PROFILE_URL : str = ""
2525
2626 class Config :
27- env_file = ".env.dev "
27+ env_file = ".env"
2828 env_file_encoding = "utf-8"
2929 extra = "ignore"
3030
@@ -36,7 +36,7 @@ class GPTSetting(BaseSettings):
3636 NAVER_SECRET_KEY : str = ""
3737
3838 class Config :
39- env_file = ".env.dev "
39+ env_file = ".env"
4040 env_file_encoding = "utf-8"
4141 extra = "ignore"
4242
@@ -49,7 +49,7 @@ class AWSSettings(BaseSettings):
4949 AWS_STORAGE_BUCKET_NAME : str = ""
5050
5151 class Config :
52- env_file = ".env.dev "
52+ env_file = ".env"
5353 env_file_encoding = "utf-8"
5454 extra = "ignore"
5555
@@ -60,7 +60,7 @@ class RedisSettings(BaseSettings):
6060 REDIS_PORT : int
6161
6262 class Config :
63- env_file = ".env.dev "
63+ env_file = ".env"
6464 env_file_encoding = "utf-8"
6565 extra = "ignore"
6666
You canβt perform that action at this time.
0 commit comments