Skip to content

Commit cad433f

Browse files
authored
Merge pull request #56 from RestTest-App/release
[Fix] env μˆ˜μ •
2 parents bb94faf + 6600175 commit cad433f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

β€Žcore/config.pyβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
Β (0)