Spaces:
Running
Running
| # Ignore unnecessary files for Docker build | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| env/ | |
| venv/ | |
| .venv/ | |
| pip-log.txt | |
| pip-delete-this-directory.txt | |
| .tox/ | |
| .coverage | |
| .coverage.* | |
| .cache | |
| nosetests.xml | |
| coverage.xml | |
| *.cover | |
| *.log | |
| .git/ | |
| .gitignore | |
| .dockerignore | |
| # Ignore documentation files (keep only main README) | |
| *.md | |
| !README.md | |
| # Ignore test files | |
| test_*.py | |
| *_test.py | |
| *.sh | |
| tests/ | |
| # Ignore IDE files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # Ignore OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Ignore unnecessary directories | |
| # config/ and services/ are needed for the application | |