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:
parent
e3dbeaf501
commit
77a5fe628c
1
.env.development.example
Normal file
1
.env.development.example
Normal file
@ -0,0 +1 @@
|
||||
NEXT_PUBLIC_API_BASE_URL: ""
|
1
.env.production.example
Normal file
1
.env.production.example
Normal file
@ -0,0 +1 @@
|
||||
NEXT_PUBLIC_API_BASE_URL: ""
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -34,3 +34,7 @@ yarn-error.log*
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
.env.production
|
||||
.env.development
|
||||
.env*.local
|
||||
|
Loading…
x
Reference in New Issue
Block a user