From 77a5fe628c62d3a44dcef7948789aacde7bb2b93 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 6 Jun 2024 14:52:53 +0200 Subject: [PATCH] feat: Add .env example files and update .gitignore This commit introduces .env.production.example and .env.development.example files with API Base URL configuration. It also updates the .gitignore file to ignore the actual .env files, to ensure sensitive data is not tracked. --- .env.development.example | 1 + .env.production.example | 1 + .gitignore | 4 ++++ 3 files changed, 6 insertions(+) create mode 100644 .env.development.example create mode 100644 .env.production.example diff --git a/.env.development.example b/.env.development.example new file mode 100644 index 0000000..331f5f7 --- /dev/null +++ b/.env.development.example @@ -0,0 +1 @@ +NEXT_PUBLIC_API_BASE_URL: "" \ No newline at end of file diff --git a/.env.production.example b/.env.production.example new file mode 100644 index 0000000..331f5f7 --- /dev/null +++ b/.env.production.example @@ -0,0 +1 @@ +NEXT_PUBLIC_API_BASE_URL: "" \ No newline at end of file diff --git a/.gitignore b/.gitignore index fd3dbb5..74c4f10 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,7 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts + +.env.production +.env.development +.env*.local