# Version control .git .gitignore # Python artifacts __pycache__ *.pyc *.pyo *.egg-info *.egg dist/ build/ .eggs/ # Virtual environments .venv venv env # Tests and docs (not needed in runtime) tests/ docs/ *.md !README.md # IDE and editor files .vscode/ .idea/ *.swp *.swo *~ # Environment and secrets .env .env.* !.env.example # OS files .DS_Store Thumbs.db # Development artifacts bloxserver/ *.db *.sqlite *.sqlite3 # CI/CD .github/