# Ignore virtual environment directory venv/ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # Ignore system files .DS_Store Thumbs.db # Ignore logs and temporary files *.log *.tmp logs/ tmp/ # Ignore Python environment and configuration files .env *.env *.config.yaml saved_config.yaml # Ignore application-generated files repo-context.txt # Ignore static files generated for UI static_files/*.txt static_files/*.log # Ignore IDE configuration files .idea/ .vscode/ # Ignore dependency management files *.lock # Ignore build artifacts build/ dist/ *.egg-info/ # Ignore test output files tests/__pycache__/ tests/*.py[cod] # Ignore specific output folders or other user-defined directories output/ generated/