# .dockerignore # Ignore all log files and directories *.log */__pycache__/ *.pyc *.pyo *.pyd # Ignore all credential files *.pem *.p12 *.crt *.key # Ignore git files .git .gitignore # Ignore build artifacts, cache files and test scripts build/ *cache/ tests/ cache.db # Ignore MacOS system files .DS_Store # Ignore Python virtual environments venv/ *.venv .env # Ignore node/npm files node_modules/ npm-debug.log package-lock.json