From b7563346aaec5b6e02e898fb6e62aa65afff3e57 Mon Sep 17 00:00:00 2001 From: fslds Date: Thu, 7 Jan 2021 10:52:41 +0100 Subject: [PATCH] Add direnv .envrc to ignored files. The direnv project (https://direnv.net/ ) uses .envrc files for dynamically loading environment variables (or other settings) per directory using the user's shell.. As it can contain sensitive information, and is similar in goal as to .env etc, I think it is a good idea to exclude this by default as well. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index a81c8ee1..212421b4 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -106,6 +106,7 @@ celerybeat.pid # Environments .env +.envrc .venv env/ venv/