개발 환경 변수 호출 우선순위 변경
All checks were successful
Build And Test / build-and-push (push) Successful in 4m36s
All checks were successful
Build And Test / build-and-push (push) Successful in 4m36s
This commit is contained in:
parent
fb02b8dc8d
commit
c12d1b527c
@ -16,13 +16,13 @@ from pathlib import Path
|
|||||||
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
||||||
BASE_DIR = Path(__file__).resolve().parent.parent
|
BASE_DIR = Path(__file__).resolve().parent.parent
|
||||||
|
|
||||||
# 우선순위: .env.prd > .env.dev > .env
|
# 우선순위: .env.dev > .env.prd > .env
|
||||||
if os.path.exists(os.path.join(BASE_DIR, '.env.prd')):
|
if os.path.exists(os.path.join(BASE_DIR, '.env.dev')):
|
||||||
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')):
|
|
||||||
print("Read Environment File > Used : .env.dev")
|
print("Read Environment File > Used : .env.dev")
|
||||||
load_dotenv(os.path.join(BASE_DIR, '.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:
|
else:
|
||||||
print("None Environment File > Used : local_env")
|
print("None Environment File > Used : local_env")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user