Updated gitignore to ignore .env and include itself

This commit is contained in:
Thord Johansson 2023-07-24 17:16:14 +02:00
parent a4e863b647
commit 7492eeaea7

16
.gitignore vendored Normal file
View File

@ -0,0 +1,16 @@
# ignore everything
*
# don't ignore dirs so we can look inside them
!*/
# but do ignore volumes and subsubdirs
volumes/
*/*/
# only allow .yml files
!*.yml
!*.md
!.gitignore
.env