From 8f1cc8905078bd80244a73d1af81b1507eb8d40c Mon Sep 17 00:00:00 2001 From: root Date: Fri, 21 Aug 2026 18:26:20 +0200 Subject: [PATCH] chore: update .gitignore to exclude secrets and runtime data --- .gitignore | 35 ++++++++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 1cb0e3b..da453d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,27 @@ -.paperclip/ -node_modules/ -.env -.env.* +# Secrets and local runtime config +*.env !.env.example -.DS_Store -__pycache__/ -*.pyc -dist/ -.venv/ +kino/kino-projekt.env +token-monitor/token-monitor.env + +# Runtime data +**/data/ +**/export/ +*.sqlite +*.sqlite3 +*.sqlite3-wal +*.sqlite3-shm +*.db +*.db-wal +*.db-shm + +# Credentials and browser/runtime caches +**/.ssh/ +**/known_hosts +**/.cache/ +**/.venv/ +**/venv/ +**/__pycache__/ +**/*.pyc +**/*.egg-info/ +**/*.pytest_cache/ \ No newline at end of file