{"id":18819003,"url":"https://github.com/geoscienceaustralia/dea-config","last_synced_at":"2026-05-21T01:05:43.960Z","repository":{"id":37665249,"uuid":"135221580","full_name":"GeoscienceAustralia/dea-config","owner":"GeoscienceAustralia","description":"Config files for dea services","archived":false,"fork":false,"pushed_at":"2026-02-23T02:15:24.000Z","size":6045,"stargazers_count":19,"open_issues_count":26,"forks_count":25,"subscribers_count":27,"default_branch":"master","last_synced_at":"2026-02-23T09:32:23.383Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GeoscienceAustralia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-05-29T00:30:27.000Z","updated_at":"2026-02-20T02:52:02.000Z","dependencies_parsed_at":"2023-10-16T14:58:16.840Z","dependency_job_id":"c936e8dd-f75a-4aa9-b164-f19a784f7ad0","html_url":"https://github.com/GeoscienceAustralia/dea-config","commit_stats":null,"previous_names":[],"tags_count":157,"template":false,"template_full_name":null,"purl":"pkg:github/GeoscienceAustralia/dea-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoscienceAustralia%2Fdea-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoscienceAustralia%2Fdea-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoscienceAustralia%2Fdea-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoscienceAustralia%2Fdea-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GeoscienceAustralia","download_url":"https://codeload.github.com/GeoscienceAustralia/dea-config/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoscienceAustralia%2Fdea-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29885805,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"online","status_checked_at":"2026-02-27T02:00:06.759Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T00:19:47.723Z","updated_at":"2026-02-27T05:11:12.362Z","avatar_url":"https://github.com/GeoscienceAustralia.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DEA Config\nConfig files for Digital Earth Australia (DEA) services\n\nThis is a central space used to store configuration for our services and products.\n\nBelow are notable folders:\n\n- [configs for DEV ENV](https://github.com/GeoscienceAustralia/dea-config/tree/master/dev)\n- [configs for PROD ENV](https://github.com/GeoscienceAustralia/dea-config/tree/master/prod)\n- [products definition](https://github.com/GeoscienceAustralia/dea-config/tree/master/products)\n- [product metadatas](https://github.com/GeoscienceAustralia/dea-config/tree/master/product_metadata)\n\n## Docker image\n\nimage name: `geoscienceaustralia/dea-datakube-config`\nup to version `1.5.38-13-g43d4569a` images are available from: [dockerhub](https://hub.docker.com/r/geoscienceaustralia/dea-datakube-config)\nnewer images are only available from AWS ECR\n\n## Formatting for Terria Data Description section in `ows config`\n#### Bold\n```\n**Overview**\n```\n#### Italic\n```\n*Overview*\n```\n\n## Testing\n\n### products metadata and products definition testing\n\n#### testing workspace csv\nFirst, create an `.env` file for the `docker-compose` setup\n```bash\n    vi .env\n    # inside .env\nENV=prod\nEXPLORER_ENDPOINT=explorer.sandbox.dea.ga.gov.au\n```\nthen bring up the testing tool\n```bash\n    docker-compose -f docker-compose.productscsv.yaml up -d\n    docker exec -it dea-config_datacube_1 bash\n    # within the docker container run\n    datacube system init\n    cd /env/config\n    ./datacube_init_metadata.sh\n    ./check-product-csv.sh\n```\n\n#### audit checks (local-check-script.sh)\n```bash\n    docker-compose -f docker-compose.productscsv.yaml up -d\n    docker exec -it dea-config_datacube_1 bash\n    # within the docker container run\n    datacube system init\n    cd /env/config\n    ./datacube_init_metadata.sh\n    ./local-check-script.sh\n```\n\n\n### ows config testing\nFirst, create an `.env` file for the `docker-compose` setup\n\n```bash\n    vi .env\n    # inside .env\nOWS_CFG_PATH=dev/services/wms/ows_refactored\nDATACUBE_OWS_CFG=ows_refactored.ows_root_cfg.ows_cfg\nPYTHON_PATH=dev/services/wms/\n```\n\nthen bring up the testing tool\n\n```bash\n    docker-compose -f docker-compose.ows.yaml up -d\n    docker exec -it dea-config_ows_1 bash\n    # within the docker container run\n    cd /env/config\n    datacube system init\n    ./compare-cfg.sh\n```\n\n## Pull Request Template\nThere are three pull request Templates available for the following changes:\n- ows config changes (ows_cfg.md)\n- terria json changes (terria.md)\n- product yaml file changes (product.md)\n\nTo access the PR templates\n- open up a new pull request page and add `\u0026template=ows_cfg.md`, `\u0026template=terria.md` or `\u0026template=product.md` at the end of the url\n\nfor example https://github.com/GeoscienceAustralia/dea-config/compare/ows-fix-depreciated?expand=1\u0026template=ows_cfg.md\n# Usage\nFiles should be referenced by the raw tag on the master branch i.e.\n\n\nhttps://raw.githubusercontent.com/GeoscienceAustralia/dea-config/master/prod/products/nrt/landsat/products.yaml\n\n# Dependants\n\n[Datacube EKS](https://github.com/opendatacube/datacube-k8s-eks) - Containerised Web Services for DEA running on\nAWS EKS.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoscienceaustralia%2Fdea-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeoscienceaustralia%2Fdea-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeoscienceaustralia%2Fdea-config/lists"}