# Git .git .gitignore .gitattributes # 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 venv/ .venv/ ENV/ env/ # IDE .idea/ .vscode/ *.swp *.swo *~ # Testing .pytest_cache/ .coverage htmlcov/ # Local environment .env .env.local *.local # Database (will be mounted from volume) *.db *.sqlite *.sqlite3 # Logs *.log logs/ # OS .DS_Store Thumbs.db # Documentation README.md docs/ *.md # Docker Dockerfile docker-compose*.yml .docker/