Spaces:
Running
Running
| # .gcloudignore β Cloud Build source upload exclusions | |
| # gcloud builds submit uses this before creating the source tarball. | |
| # Patterns follow .gitignore syntax. | |
| # ββ Heavy runtimes / caches βββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| venv/ | |
| .venv/ | |
| __pycache__/ | |
| **/__pycache__/ | |
| *.py[cod] | |
| .cache/ | |
| .pytest_cache/ | |
| # ββ Secrets (never upload) ββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| .env | |
| .env.* | |
| serviceAccountKey.json | |
| *.json.key | |
| # ββ ML artefacts (large β Docker downloads from HuggingFace at build time) βββ | |
| ml/models/ | |
| ml/data/raw/ | |
| ml/data/processed/ | |
| ml/data/combined/ | |
| # ββ Frontend source & deps (built separately, not needed in Cloud Run) βββββββ | |
| frontend/node_modules/ | |
| frontend/dist/ | |
| # ββ Dataset pipeline scripts (not needed at runtime) βββββββββββββββββββββββββ | |
| ml/data_sources/ | |
| ml/train_*.py | |
| ml/dataset_builder.py | |
| ml/combined_dataset.py | |
| ml/_smoke_test.py | |
| # ββ Tests & docs ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| tests/ | |
| docs/ | |
| # ββ OS / editor βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| .DS_Store | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| # ββ Git βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| .git/ | |
| .gitignore | |
| .gitattributes | |