Skip to content

Commit 6600175

Browse files
committed
πŸ”¨ fix: update envs
1 parent 4dac6a1 commit 6600175

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

@@ -34,7 +34,7 @@ class GPTSetting(BaseSettings):
3434
OPENAI_API_KEY: str = ""
3535

3636
class Config:
37-
env_file = ".env.dev"
37+
env_file = ".env"
3838
env_file_encoding = "utf-8"
3939
extra = "ignore"
4040

@@ -47,7 +47,7 @@ class AWSSettings(BaseSettings):
4747
AWS_STORAGE_BUCKET_NAME: str = ""
4848

4949
class Config:
50-
env_file = ".env.dev"
50+
env_file = ".env"
5151
env_file_encoding = "utf-8"
5252
extra = "ignore"
5353

@@ -58,7 +58,7 @@ class RedisSettings(BaseSettings):
5858
REDIS_PORT: int
5959

6060
class Config:
61-
env_file = ".env.dev"
61+
env_file = ".env"
6262
env_file_encoding = "utf-8"
6363
extra = "ignore"
6464

0 commit comments

Comments
Β (0)