commit d4f7e90d0c21c3771c811dbe3d86f514fd909d0e Author: Stefan Hacker Date: Sat Apr 11 14:50:45 2026 +0200 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c1d07ba --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Environment +.env + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +*.egg-info/ +dist/ +build/ +venv/ +.venv/ + +# Database +*.db +*.db-journal +*.db-wal +*.db-shm + +# Data directory (runtime) +data/ + +# Node / Frontend +frontend/node_modules/ +frontend/dist/ + +# Production build in backend +backend/static/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log