From 7a0d397fb1477639726d839eaab5c670e841f697 Mon Sep 17 00:00:00 2001 From: max Date: Tue, 8 Sep 2026 23:02:00 +0200 Subject: [PATCH] build: initialize git repository and gitignore --- .gitignore | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..88668af --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ +.venv/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Logs and databases +*.log +*.sqlite3 + +# OS / Editor files +.DS_Store +Thumbs.db +.vscode/ +.idea/ +*.swp +*.swo