From 41fe2a11bd94a6f36f498d2af38db14501bb58e3 Mon Sep 17 00:00:00 2001 From: rootiest Date: Thu, 9 Apr 2026 00:12:20 -0400 Subject: [PATCH] chore: use direnv to manage python venv --- .envrc | 5 +++++ .gitignore | 1 + 2 files changed, 6 insertions(+) create mode 100644 .envrc diff --git a/.envrc b/.envrc new file mode 100644 index 0000000000..8f33a3092d --- /dev/null +++ b/.envrc @@ -0,0 +1,5 @@ +# Set the root of the virtual environment +export VIRTUAL_ENV=$PWD/.venv + +# Add the venv's bin folder to the start of your PATH +PATH_add .venv/bin diff --git a/.gitignore b/.gitignore index ef0df5d603..ea7ad925a8 100644 --- a/.gitignore +++ b/.gitignore @@ -116,3 +116,4 @@ via*.json !keyboards/keychron/*/firmware/*.bin /.claude_session /.remember/tmp/save-session.pid +/.direnv/CACHEDIR.TAG -- 2.52.0