From aacd0e47d20555f05da51a84df94c59365b568e0 Mon Sep 17 00:00:00 2001 From: icurfer Date: Tue, 28 Jan 2025 10:01:28 +0900 Subject: [PATCH] =?UTF-8?q?ip=EA=B4=80=EB=A6=AC=EB=8C=80=EC=9E=A5=20db?= =?UTF-8?q?=EC=97=B0=EB=8F=99=ED=95=84=EB=93=9C=20=EB=B3=80=EA=B2=BD=20&&?= =?UTF-8?q?=20=ED=99=98=EA=B2=BD=EB=B3=80=EC=88=98=20=ED=98=B8=EC=B6=9C?= =?UTF-8?q?=EB=A1=9C=EC=A7=81=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- butler/models.py | 2 +- butler/views.py | 6 +++--- butler_ddochi/settings.py | 12 +++++++++++- version | 2 +- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/butler/models.py b/butler/models.py index e0a736d..5510b5a 100644 --- a/butler/models.py +++ b/butler/models.py @@ -7,7 +7,7 @@ class IPManagementRecord(models.Model): network_nm = models.CharField(max_length=100) # NETWORK_NM ip_addrs = models.CharField(max_length=50) # IP_ADDRS svr_nm = models.CharField(max_length=100) # SVR_NM - contents = models.TextField(blank=True, null=True) # DESC + contents = models.TextField(blank=True, null=True) # desc -> contents remark = models.TextField(blank=True, null=True) # REMARK created_at = models.DateTimeField(auto_now_add=True) # 생성 시간 자동 기록 updated_at = models.DateTimeField(auto_now=True) # 수정 시간 자동 기록 diff --git a/butler/views.py b/butler/views.py index e9d73d8..5c3ba62 100644 --- a/butler/views.py +++ b/butler/views.py @@ -62,7 +62,7 @@ def add_ip_record(request): network_nm = request.POST.get("network_nm") ip_addrs = request.POST.get("ip_addrs") svr_nm = request.POST.get("svr_nm") - desc = request.POST.get("desc") + contents = request.POST.get("contents") remark = request.POST.get("remark") # 작성자 (author)는 로그인된 사용자로 설정 author = request.user @@ -71,7 +71,7 @@ def add_ip_record(request): network_nm=network_nm, ip_addrs=ip_addrs, svr_nm=svr_nm, - desc=desc, + contents=contents, remark=remark, author=author, ) @@ -96,7 +96,7 @@ def edit_ip_record(request, pk): record.network_nm = request.POST.get("network_nm") record.ip_addrs = request.POST.get("ip_addrs") record.svr_nm = request.POST.get("svr_nm") - record.desc = request.POST.get("desc") + record.contents = request.POST.get("contents") record.remark = request.POST.get("remark") record.save() return redirect("/ip_mgmt") diff --git a/butler_ddochi/settings.py b/butler_ddochi/settings.py index 2b5cb9b..2571bc9 100644 --- a/butler_ddochi/settings.py +++ b/butler_ddochi/settings.py @@ -16,7 +16,17 @@ from pathlib import Path # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent -load_dotenv(os.path.join(BASE_DIR, '.env.dev')) +# 우선순위: .env.prd > .env.dev > .env +if os.path.exists(os.path.join(BASE_DIR, '.env.prd')): + print("Read ::: .env.prd") + load_dotenv(os.path.join(BASE_DIR, '.env.prd')) +elif os.path.exists(os.path.join(BASE_DIR, '.env.dev')): + print("Read ::: .env.dev") + load_dotenv(os.path.join(BASE_DIR, '.env.dev')) +else: + print("Read ::: local_env") + +# load_dotenv(os.path.join(BASE_DIR, '.env.dev')) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/ diff --git a/version b/version index f18f02c..8ac8aa6 100644 --- a/version +++ b/version @@ -1 +1 @@ -dev_0.0.26 \ No newline at end of file +dev_0.0.27 \ No newline at end of file