From 43119caf80911cb319c9ecc4528c73b60d2d46c7 Mon Sep 17 00:00:00 2001 From: "jihoon87.lee" Date: Tue, 3 Feb 2026 11:05:06 +0900 Subject: [PATCH] =?UTF-8?q?Feat:=20=EC=98=88=EC=A0=9C=20=ED=99=98=EA=B2=BD?= =?UTF-8?q?=20=ED=8C=8C=EC=9D=BC=20=EC=B6=94=EA=B0=80=20=EB=B0=8F=20gitign?= =?UTF-8?q?ore=20=EC=98=88=EC=99=B8=20=EB=93=B1=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .env.example - Supabase 환경 변수 예제 파일 추가 (NEXT_PUBLIC_SUPABASE_URL, NEXT_PUBLIC_SUPABASE_ANON_KEY) .gitignore - .env.example을 예외 처리하여 저장소에 포함되도록 수정 - 주석 및 섹션 정리, 커스텀 항목 정리 --- .env.example | 6 ++++++ .gitignore | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..7264df2 --- /dev/null +++ b/.env.example @@ -0,0 +1,6 @@ +# Supabase 환경 설정 예제 파일 +# 이 파일의 이름을 .env.local 로 변경한 뒤, 실제 값을 채워넣으세요. +# 값 확인: https://supabase.com/dashboard/project/_/settings/api + +NEXT_PUBLIC_SUPABASE_URL= +NEXT_PUBLIC_SUPABASE_ANON_KEY= diff --git a/.gitignore b/.gitignore index fe28c50..470b478 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,9 @@ coverage/ .env.production.local .env*.local +# ★ 예제 파일은 공유해야 하므로 예외 처리 (깃에 올라감) +!.env.example + # ======================================== # IDE & Editor (에디터 설정) # ======================================== @@ -117,5 +120,7 @@ storybook-static/ .cache/ node_modules -# Playwright MCP +# ======================================== +# Custom +# ======================================== .playwright-mcp/