Spaces:
Sleeping
Sleeping
| # Exclude everything | |
| ** | |
| # Include Dockerfile and docker-compose for reference (optional, decide based on your use case) | |
| !Dockerfile | |
| !docker-compose.yml | |
| # Include Python application files | |
| !*.py | |
| # Include requirements files | |
| !requirements*.txt | |
| # Include script | |
| !*.sh | |
| # Exclude specific requirements if necessary | |
| # requirements-test.txt (Uncomment if you decide to exclude this) | |