web: improve management of `.env` files
- Ignores `.env.production`. - Improvees `.env.example` file. Co-Authored-by: iGor milhit <igor@milhit.ch>main
parent
bf3e29fb0e
commit
22563c2113
|
|
@ -1,2 +1,5 @@
|
|||
# API URL (required)
|
||||
# Development
|
||||
VITE_API_URL=http://localhost:8000
|
||||
# Production
|
||||
VITE_API_URL=https://domaine.org/api
|
||||
|
|
|
|||
|
|
@ -25,12 +25,11 @@ dist-ssr
|
|||
|
||||
.vite
|
||||
|
||||
.env
|
||||
.env*
|
||||
.env.local
|
||||
.env*.local
|
||||
!.env.example
|
||||
!.env.template
|
||||
!env.development
|
||||
!env.production
|
||||
|
||||
coverage
|
||||
|
|
|
|||
Loading…
Reference in New Issue