mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-28 11:34:41 +03:00
7f55c92acb
* 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
21 lines
560 B
Plaintext
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
|