mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-27 02:52:22 +03:00
3679ab6ed4
* Improved default gitignore regarding .env rules. * Update web/docs/project/env-vars.md Co-authored-by: Mihovil Ilakovac <mihovil@ilakovac.com> * Uncommented dotenv info in docs. * Updated gitignores of example apps. * Added to ChangeLog. --------- Co-authored-by: Mihovil Ilakovac <mihovil@ilakovac.com>
14 lines
380 B
Plaintext
14 lines
380 B
Plaintext
.wasp/
|
|
node_modules/
|
|
|
|
# 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.*
|
|
# Don't ignore .env.client as it can't contain any secrets.
|
|
!.env.client
|
|
# Don't ignore example env files.
|
|
!.env.example
|
|
!.env.*.example
|