Updated .gitignore to the version that will be coming with new Wasp soon. (#168)

Co-authored-by: vincanger <70215737+vincanger@users.noreply.github.com>
This commit is contained in:
Martin Šošić 2024-06-07 11:30:20 +02:00 committed by GitHub
parent 5dd28bc920
commit 5b44c08cfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,16 +3,14 @@ node_modules/
migrations/
**/.DS_Store
# We ignore env files recognized and used by Wasp.
.env.server
.env.client
# To be extra safe, we by default ignore any files with `.env` extension in them.
# We by default ignore any dotenv files to avoid committing any secrets by accident.
# If this is too agressive for you, consider allowing specific files with `!` operator,
# or modify/delete these two lines.
*.env
*.env.*
.env
.env.*
# Don't ignore .env.client as it can't contain any secrets.
!.env.client
# Don't ignore example env files.
!.env.example
!.env.*.example
# We don't want to ignore .env example files.
!*.env.*.example
!*.env.example