commit b5d71502d84f5a0d639974f050ae39012e3cb89e Author: Administrator Date: Sat May 23 04:47:35 2026 +0200 Initial commit: Setup project diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..e5e3305 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,13 @@ +{ + "permissions": { + "allow": [ + "Bash(Get-ChildItem -Path \"U:\\\\PycharmProjects\\\\Backup\" -Force)", + "Bash(Select-Object Name)", + "Bash(git init *)", + "Bash(git config *)", + "Bash(git remote *)", + "Bash(git add *)", + "Bash(git commit *)" + ] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3555f3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Virtual environments +venv/ +ENV/ +env/ +.venv + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ +.DS_Store + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# Temporary files +*.tmp +*.bak +*.log