# Git and version control .git .gitignore .gitattributes # Documentation README.md *.md docs/ # Development files .env .env.local .env.production *.log *.pyc __pycache__/ .pytest_cache/ .coverage # IDE and editor files .vscode/ .idea/ *.swp *.swo *~ # OS generated files .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # Node.js (if any) node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* # Build artifacts build/ dist/ *.egg-info/ # Temporary files tmp/ temp/ *.tmp # Large data files (will be mounted at runtime) # dataset/ # Docker files Dockerfile* docker-compose* .dockerignore # Deployment files render.yaml netlify.toml build_production.sh