Spaces:
Runtime error
Runtime error
| # Ignore Python cache files | |
| **/__pycache__ | |
| # Ignore compiled Python files | |
| *.pyc | |
| # Ignore editor-specific files | |
| .vscode/ | |
| .idea/ | |
| # Ignore operating system files | |
| .DS_Store | |
| Thumbs.db | |
| # Ignore log files | |
| *.log | |
| # Ignore temporary and cache files | |
| *.tmp | |
| *.cache | |
| # Ignore build artifacts | |
| /build/ | |
| /dist/ | |
| # Ignore virtual environment files | |
| /venv/ | |
| /.venv/ | |
| # Ignore package manager files | |
| /node_modules/ | |
| /yarn.lock | |
| /package-lock.json | |
| # Ignore database files | |
| *.db | |
| *.sqlite | |
| # Ignore secret files | |
| *.secret | |
| # Ignore compiled binaries | |
| *.exe | |
| *.dll | |
| *.so | |
| *.dylib | |
| # Ignore backup files | |
| *.bak | |
| *.swp | |
| *.swo | |
| *.~* | |
| # Ignore exp result files | |
| dumps/ | |
| exps/ |