| # Ignore git and version control | |
| .git | |
| .gitignore | |
| # Ignore Docker files | |
| Dockerfile | |
| docker-compose.yml | |
| # Ignore Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # Ignore environment files | |
| .env | |
| .env.example | |
| # Ignore development files | |
| .vscode/ | |
| .idea/ | |
| # Ignore logs | |
| *.log |