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.
This commit is contained in:
Mathis H (Avnyr) 2024-06-06 14:52:53 +02:00
parent e3dbeaf501
commit 77a5fe628c
3 changed files with 6 additions and 0 deletions

1
.env.development.example Normal file
View File

@ -0,0 +1 @@
NEXT_PUBLIC_API_BASE_URL: ""

1
.env.production.example Normal file
View File

@ -0,0 +1 @@
NEXT_PUBLIC_API_BASE_URL: ""

4
.gitignore vendored
View File

@ -34,3 +34,7 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
.env.production
.env.development
.env*.local