개발 환경 변수 호출 우선순위 변경
All checks were successful
Build And Test / build-and-push (push) Successful in 4m36s

This commit is contained in:
icurfer 2025-03-08 17:16:11 +09:00
parent fb02b8dc8d
commit c12d1b527c
2 changed files with 6 additions and 6 deletions

View File

@ -16,13 +16,13 @@ from pathlib import Path
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# 우선순위: .env.prd > .env.dev > .env
if os.path.exists(os.path.join(BASE_DIR, '.env.prd')):
print("Read Environment File > Used : .env.prd")
load_dotenv(os.path.join(BASE_DIR, '.env.prd'))
elif os.path.exists(os.path.join(BASE_DIR, '.env.dev')):
# 우선순위: .env.dev > .env.prd > .env
if os.path.exists(os.path.join(BASE_DIR, '.env.dev')):
print("Read Environment File > Used : .env.dev")
load_dotenv(os.path.join(BASE_DIR, '.env.dev'))
elif os.path.exists(os.path.join(BASE_DIR, '.env.prd')):
print("Read Environment File > Used : .env.prd")
load_dotenv(os.path.join(BASE_DIR, '.env.prd'))
else:
print("None Environment File > Used : local_env")

View File

@ -1 +1 @@
dev_0.0.30
dev_0.0.31