├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── case_studies_call.md │ ├── exceeding_budget_request.md │ ├── feature_request.md │ ├── onprem-request.md │ └── workshop_IT_request.md ├── PULL_REQUEST_TEMPLATE.md ├── action_templates │ ├── build-and-push │ │ └── action.yaml │ ├── build-and-test │ │ └── action.yaml │ └── slack │ │ └── action.yml ├── actions │ ├── docker-build │ │ └── action.yml │ └── docker-test │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── docker_build_pr.yml │ ├── docker_image_main_branch.yml │ ├── docker_publish_release.yml │ ├── dockerhub_readme.yml │ └── terraform_validation.yml ├── .gitignore ├── LICENSE ├── README.md ├── archive ├── AWI_007_windows_test.ps1 ├── Example.json ├── README_ARCHIVE.md ├── config │ └── awi_simplified_realization.json ├── docs │ ├── Specification.md │ └── notes.md └── terraform │ ├── README.md │ ├── network │ ├── main.tf │ └── variables.tf │ └── user │ ├── main.tf │ ├── outputs.tf │ ├── script.tftpl │ └── variables.tf ├── docker ├── Dockerfile ├── HelloNGEN.sh └── buildtest ├── docs ├── 00_CONTENTS.md ├── 01_GETTING_STARTED.md ├── 02_INSTALL.md ├── 03_00_SPECIFICATIONS.md ├── 03_01_CONTAINERS.md ├── 03_02_RUN_DIRECTORIES.md ├── 03_03_REALIZATIONS.md ├── 03_04_MODELS.md ├── 04_BUILDING.md ├── 05_CONTRIBUTE.md ├── 06_CONTACT.md └── img │ ├── Provo_GeoSpatial.png │ ├── Provo_catchments.png │ ├── Provo_nexus_point.png │ ├── Provo_teehr_metrics.png │ ├── VPU16.png │ ├── VPU16_007.png │ ├── ciroh-bgsafe.png │ ├── ngiab.png │ ├── outputcat.png │ ├── outputnexus.png │ └── outputnexusteehr.png ├── guide.sh ├── runTeehr.sh ├── versions.yml └── viewOnTethys.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/case_studies_call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/ISSUE_TEMPLATE/case_studies_call.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/exceeding_budget_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/ISSUE_TEMPLATE/exceeding_budget_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/onprem-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/ISSUE_TEMPLATE/onprem-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/workshop_IT_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/ISSUE_TEMPLATE/workshop_IT_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/action_templates/build-and-push/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/action_templates/build-and-push/action.yaml -------------------------------------------------------------------------------- /.github/action_templates/build-and-test/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/action_templates/build-and-test/action.yaml -------------------------------------------------------------------------------- /.github/action_templates/slack/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/action_templates/slack/action.yml -------------------------------------------------------------------------------- /.github/actions/docker-build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/actions/docker-build/action.yml -------------------------------------------------------------------------------- /.github/actions/docker-test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/actions/docker-test/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker_build_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/workflows/docker_build_pr.yml -------------------------------------------------------------------------------- /.github/workflows/docker_image_main_branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/workflows/docker_image_main_branch.yml -------------------------------------------------------------------------------- /.github/workflows/docker_publish_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/workflows/docker_publish_release.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub_readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/workflows/dockerhub_readme.yml -------------------------------------------------------------------------------- /.github/workflows/terraform_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.github/workflows/terraform_validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/README.md -------------------------------------------------------------------------------- /archive/AWI_007_windows_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/AWI_007_windows_test.ps1 -------------------------------------------------------------------------------- /archive/Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/Example.json -------------------------------------------------------------------------------- /archive/README_ARCHIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/README_ARCHIVE.md -------------------------------------------------------------------------------- /archive/config/awi_simplified_realization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/config/awi_simplified_realization.json -------------------------------------------------------------------------------- /archive/docs/Specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/docs/Specification.md -------------------------------------------------------------------------------- /archive/docs/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/docs/notes.md -------------------------------------------------------------------------------- /archive/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/terraform/README.md -------------------------------------------------------------------------------- /archive/terraform/network/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/terraform/network/main.tf -------------------------------------------------------------------------------- /archive/terraform/network/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/terraform/network/variables.tf -------------------------------------------------------------------------------- /archive/terraform/user/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/terraform/user/main.tf -------------------------------------------------------------------------------- /archive/terraform/user/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/terraform/user/outputs.tf -------------------------------------------------------------------------------- /archive/terraform/user/script.tftpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/terraform/user/script.tftpl -------------------------------------------------------------------------------- /archive/terraform/user/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/archive/terraform/user/variables.tf -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/HelloNGEN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docker/HelloNGEN.sh -------------------------------------------------------------------------------- /docker/buildtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docker/buildtest -------------------------------------------------------------------------------- /docs/00_CONTENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/00_CONTENTS.md -------------------------------------------------------------------------------- /docs/01_GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/01_GETTING_STARTED.md -------------------------------------------------------------------------------- /docs/02_INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/02_INSTALL.md -------------------------------------------------------------------------------- /docs/03_00_SPECIFICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/03_00_SPECIFICATIONS.md -------------------------------------------------------------------------------- /docs/03_01_CONTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/03_01_CONTAINERS.md -------------------------------------------------------------------------------- /docs/03_02_RUN_DIRECTORIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/03_02_RUN_DIRECTORIES.md -------------------------------------------------------------------------------- /docs/03_03_REALIZATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/03_03_REALIZATIONS.md -------------------------------------------------------------------------------- /docs/03_04_MODELS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/03_04_MODELS.md -------------------------------------------------------------------------------- /docs/04_BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/04_BUILDING.md -------------------------------------------------------------------------------- /docs/05_CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/05_CONTRIBUTE.md -------------------------------------------------------------------------------- /docs/06_CONTACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/06_CONTACT.md -------------------------------------------------------------------------------- /docs/img/Provo_GeoSpatial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/Provo_GeoSpatial.png -------------------------------------------------------------------------------- /docs/img/Provo_catchments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/Provo_catchments.png -------------------------------------------------------------------------------- /docs/img/Provo_nexus_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/Provo_nexus_point.png -------------------------------------------------------------------------------- /docs/img/Provo_teehr_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/Provo_teehr_metrics.png -------------------------------------------------------------------------------- /docs/img/VPU16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/VPU16.png -------------------------------------------------------------------------------- /docs/img/VPU16_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/VPU16_007.png -------------------------------------------------------------------------------- /docs/img/ciroh-bgsafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/ciroh-bgsafe.png -------------------------------------------------------------------------------- /docs/img/ngiab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/ngiab.png -------------------------------------------------------------------------------- /docs/img/outputcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/outputcat.png -------------------------------------------------------------------------------- /docs/img/outputnexus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/outputnexus.png -------------------------------------------------------------------------------- /docs/img/outputnexusteehr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/docs/img/outputnexusteehr.png -------------------------------------------------------------------------------- /guide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/guide.sh -------------------------------------------------------------------------------- /runTeehr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/runTeehr.sh -------------------------------------------------------------------------------- /versions.yml: -------------------------------------------------------------------------------- 1 | NGIAB_VERSION: "1.5.1" 2 | -------------------------------------------------------------------------------- /viewOnTethys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIROH-UA/NGIAB-CloudInfra/HEAD/viewOnTethys.sh --------------------------------------------------------------------------------