You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Best practice is that .env should never be part of a repository. Doing so makes merging upstream changes more difficult and can lead to accidentally committing sensitive data (like postgres and smtp passwords) to a repository.
Instead, create an example file .env-dist which should be copied by the user.
.env should be in .gitignore.
The text was updated successfully, but these errors were encountered:
dmd
added a commit
to dmd/xnat-docker-compose
that referenced
this issue
Apr 8, 2021
Best practice is that
.env
should never be part of a repository. Doing so makes merging upstream changes more difficult and can lead to accidentally committing sensitive data (like postgres and smtp passwords) to a repository.Instead, create an example file
.env-dist
which should be copied by the user..env
should be in.gitignore
.The text was updated successfully, but these errors were encountered: