wasp/waspc/examples/todoApp/.gitignore
Martin Šošić 7f55c92acb
Made examples/todoApp more approachable (+ documented what it should be used for) (#2094)
* Made waspc/examples/todoApp easier to run (docs + env files).

* Added .env.server management via dotenv-vault.

* Documented how to test compilation and building of todoApp.

* Updated PR template to mention example todo apps.

* fix

* Apply suggestions from code review

* Update waspc/README.md

* fix

* Update waspc/examples/todoApp/.gitignore
2024-06-18 21:02:10 +02:00

21 lines
560 B
Plaintext

.wasp/
node_modules/
# Ignore all dotenv files by default to prevent accidentally committing any secrets.
# To include specific dotenv files, use the `!` operator or adjust these rules.
.env
.env.*
# These two we added only because dotenv-vault keeps adding them if it doesn't find them,
# even though we don't need them. Remove them once dotenv-vault stops doing that.
.env*
.flaskenv*
# Don't ignore example dotenv files.
!.env.example
!.env.*.example
# These are config files for dotenv-vault, so we don't want to ignore them.
!.env.project
!.env.vault