From 0442470bc0b918f8e10346a15e1a0bfb9c13022f Mon Sep 17 00:00:00 2001 From: Felix Weinberger Date: Mon, 9 Jun 2025 14:58:23 +0100 Subject: [PATCH] Add .envrc to gitignore with example file Added .envrc to .gitignore to prevent accidental commits of environment-specific configurations. Included .envrc.example as a template for developers to copy and customize with their local environment variables. This ensures sensitive configuration remains local while providing clear guidance on required environment setup. --- .envrc.example | 3 +++ .gitignore | 1 + 2 files changed, 4 insertions(+) create mode 100644 .envrc.example diff --git a/.envrc.example b/.envrc.example new file mode 100644 index 000000000..b641522f1 --- /dev/null +++ b/.envrc.example @@ -0,0 +1,3 @@ +source .venv/bin/activate +export UV_INDEX=https://pypi.org/simple +unset PYTEST_DISABLE_PLUGIN_AUTOLOAD diff --git a/.gitignore b/.gitignore index e9fdca176..cc9d4883c 100644 --- a/.gitignore +++ b/.gitignore @@ -132,6 +132,7 @@ venv/ ENV/ env.bak/ venv.bak/ +.envrc # Spyder project settings .spyderproject