├── .DS_Store ├── .cfignore ├── .coveragerc ├── .env ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── add_to_project.yml │ ├── commit.yml │ ├── publish.yml │ ├── restart.yml │ ├── snyk.yml │ └── update_publishers.yml ├── .gitignore ├── .profile ├── .snyk ├── CONTRIBUTING.md ├── Dockerfile ├── Jenkinsfile ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── apt.yml ├── bin ├── jenkins_build ├── requirements.sh ├── smoke.sh └── snyk-update.py ├── ckanext ├── __init__.py └── datagov_inventory │ ├── __init__.py │ ├── fanstatic │ ├── .gitignore │ ├── styles │ │ └── datagov_inventory.css │ └── webassets.yml │ ├── i18n │ └── .gitignore │ ├── plugin.py │ ├── public │ ├── .gitignore │ └── images │ │ └── icons │ │ └── favicon.ico │ ├── templates │ ├── .gitignore │ ├── base.html │ ├── error │ │ └── anonymous.html │ └── error_document_template.html │ └── tests │ └── logic │ └── auth │ ├── __init__.py │ └── test_auth.py ├── config ├── GSA_prerun.py ├── ckan.ini ├── data │ ├── README.md │ └── inventory_publishers.csv ├── gunicorn.conf.py ├── login.production.idp.xml ├── login.sandbox.idp.xml ├── newrelic.ini ├── saml2 │ ├── idp.xml │ └── pki │ │ ├── mycert.pem │ │ └── mykey.pem ├── server_start.sh ├── who.ini └── wsgi.py ├── create-cloudgov-services.sh ├── datastore-usersetup.py ├── datastore └── docker-entrypoint-initdb.d │ └── datastore_ro.sql ├── docker-compose.test.yml ├── docker-compose.yml ├── e2e ├── cypress.config.js ├── cypress │ ├── fixtures │ │ ├── ckan_dataset.json │ │ ├── ckan_resource.csv │ │ ├── ckan_sub_dataset.json │ │ ├── draft_data_1.json │ │ └── draft_data_2.json │ ├── integration │ │ ├── ckan_extensions.cy.js │ │ ├── ckan_token.cy.js │ │ ├── dataset.cy.js │ │ ├── datastore.cy.js │ │ ├── dcat_us_export.cy.js │ │ ├── login.cy.js │ │ ├── main_page.cy.js │ │ ├── organizations.cy.js │ │ ├── public_access.cy.js │ │ └── user_permission.cy.js │ ├── plugins │ │ └── index.js │ └── support │ │ ├── command.js │ │ └── e2e.js └── package.json ├── manifest.yml ├── proxy ├── buildpack.yml ├── mime.types ├── nginx.conf └── public │ └── 500.html ├── requirements-dev.txt ├── requirements.in.txt ├── requirements.txt ├── runtime.txt ├── set_permissions.sql ├── setup.cfg ├── setup.py ├── solr ├── README.md ├── local_setup.sh ├── migrate-solrcloud-schema.sh ├── protwords.txt ├── restore_backups.sh ├── schema.xml ├── service-config-development.json ├── service-config-prod.json ├── solr_setup.sh ├── solrconfig.xml ├── stopwords.txt └── synonyms.txt ├── start.sh ├── vars.development.yml ├── vars.prod.yml ├── vars.staging.yml └── vars.yml.template /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.DS_Store -------------------------------------------------------------------------------- /.cfignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | e2e -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.coveragerc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.env -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/add_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/workflows/add_to_project.yml -------------------------------------------------------------------------------- /.github/workflows/commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/workflows/commit.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/workflows/restart.yml -------------------------------------------------------------------------------- /.github/workflows/snyk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/workflows/snyk.yml -------------------------------------------------------------------------------- /.github/workflows/update_publishers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.github/workflows/update_publishers.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.profile -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/.snyk -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/README.md -------------------------------------------------------------------------------- /apt.yml: -------------------------------------------------------------------------------- 1 | --- 2 | packages: 3 | - xmlsec1 # required for pysaml2 4 | -------------------------------------------------------------------------------- /bin/jenkins_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/bin/jenkins_build -------------------------------------------------------------------------------- /bin/requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/bin/requirements.sh -------------------------------------------------------------------------------- /bin/smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/bin/smoke.sh -------------------------------------------------------------------------------- /bin/snyk-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/bin/snyk-update.py -------------------------------------------------------------------------------- /ckanext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/__init__.py -------------------------------------------------------------------------------- /ckanext/datagov_inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/datagov_inventory/fanstatic/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/datagov_inventory/fanstatic/styles/datagov_inventory.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/fanstatic/styles/datagov_inventory.css -------------------------------------------------------------------------------- /ckanext/datagov_inventory/fanstatic/webassets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/fanstatic/webassets.yml -------------------------------------------------------------------------------- /ckanext/datagov_inventory/i18n/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/datagov_inventory/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/plugin.py -------------------------------------------------------------------------------- /ckanext/datagov_inventory/public/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/datagov_inventory/public/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/public/images/icons/favicon.ico -------------------------------------------------------------------------------- /ckanext/datagov_inventory/templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/datagov_inventory/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/templates/base.html -------------------------------------------------------------------------------- /ckanext/datagov_inventory/templates/error/anonymous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/templates/error/anonymous.html -------------------------------------------------------------------------------- /ckanext/datagov_inventory/templates/error_document_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/templates/error_document_template.html -------------------------------------------------------------------------------- /ckanext/datagov_inventory/tests/logic/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/datagov_inventory/tests/logic/auth/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/ckanext/datagov_inventory/tests/logic/auth/test_auth.py -------------------------------------------------------------------------------- /config/GSA_prerun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/GSA_prerun.py -------------------------------------------------------------------------------- /config/ckan.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/ckan.ini -------------------------------------------------------------------------------- /config/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/data/README.md -------------------------------------------------------------------------------- /config/data/inventory_publishers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/data/inventory_publishers.csv -------------------------------------------------------------------------------- /config/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/gunicorn.conf.py -------------------------------------------------------------------------------- /config/login.production.idp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/login.production.idp.xml -------------------------------------------------------------------------------- /config/login.sandbox.idp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/login.sandbox.idp.xml -------------------------------------------------------------------------------- /config/newrelic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/newrelic.ini -------------------------------------------------------------------------------- /config/saml2/idp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/saml2/idp.xml -------------------------------------------------------------------------------- /config/saml2/pki/mycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/saml2/pki/mycert.pem -------------------------------------------------------------------------------- /config/saml2/pki/mykey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/saml2/pki/mykey.pem -------------------------------------------------------------------------------- /config/server_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/server_start.sh -------------------------------------------------------------------------------- /config/who.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/who.ini -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /create-cloudgov-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/create-cloudgov-services.sh -------------------------------------------------------------------------------- /datastore-usersetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/datastore-usersetup.py -------------------------------------------------------------------------------- /datastore/docker-entrypoint-initdb.d/datastore_ro.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/datastore/docker-entrypoint-initdb.d/datastore_ro.sql -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /e2e/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress.config.js -------------------------------------------------------------------------------- /e2e/cypress/fixtures/ckan_dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/fixtures/ckan_dataset.json -------------------------------------------------------------------------------- /e2e/cypress/fixtures/ckan_resource.csv: -------------------------------------------------------------------------------- 1 | for,testing,purposes 2 | 1,2,3 -------------------------------------------------------------------------------- /e2e/cypress/fixtures/ckan_sub_dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/fixtures/ckan_sub_dataset.json -------------------------------------------------------------------------------- /e2e/cypress/fixtures/draft_data_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/fixtures/draft_data_1.json -------------------------------------------------------------------------------- /e2e/cypress/fixtures/draft_data_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/fixtures/draft_data_2.json -------------------------------------------------------------------------------- /e2e/cypress/integration/ckan_extensions.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/ckan_extensions.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/ckan_token.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/ckan_token.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/dataset.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/dataset.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/datastore.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/datastore.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/dcat_us_export.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/dcat_us_export.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/login.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/login.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/main_page.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/main_page.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/organizations.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/organizations.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/public_access.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/public_access.cy.js -------------------------------------------------------------------------------- /e2e/cypress/integration/user_permission.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/integration/user_permission.cy.js -------------------------------------------------------------------------------- /e2e/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/plugins/index.js -------------------------------------------------------------------------------- /e2e/cypress/support/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/support/command.js -------------------------------------------------------------------------------- /e2e/cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/cypress/support/e2e.js -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/e2e/package.json -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/manifest.yml -------------------------------------------------------------------------------- /proxy/buildpack.yml: -------------------------------------------------------------------------------- 1 | --- 2 | nginx: 3 | version: mainline 4 | -------------------------------------------------------------------------------- /proxy/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/proxy/mime.types -------------------------------------------------------------------------------- /proxy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/proxy/nginx.conf -------------------------------------------------------------------------------- /proxy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/proxy/public/500.html -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/requirements.in.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.x 2 | -------------------------------------------------------------------------------- /set_permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/set_permissions.sql -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/setup.py -------------------------------------------------------------------------------- /solr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/README.md -------------------------------------------------------------------------------- /solr/local_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/local_setup.sh -------------------------------------------------------------------------------- /solr/migrate-solrcloud-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/migrate-solrcloud-schema.sh -------------------------------------------------------------------------------- /solr/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/protwords.txt -------------------------------------------------------------------------------- /solr/restore_backups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/restore_backups.sh -------------------------------------------------------------------------------- /solr/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/schema.xml -------------------------------------------------------------------------------- /solr/service-config-development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/service-config-development.json -------------------------------------------------------------------------------- /solr/service-config-prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/service-config-prod.json -------------------------------------------------------------------------------- /solr/solr_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/solr_setup.sh -------------------------------------------------------------------------------- /solr/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/solrconfig.xml -------------------------------------------------------------------------------- /solr/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/stopwords.txt -------------------------------------------------------------------------------- /solr/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/solr/synonyms.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/start.sh -------------------------------------------------------------------------------- /vars.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/vars.development.yml -------------------------------------------------------------------------------- /vars.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/vars.prod.yml -------------------------------------------------------------------------------- /vars.staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/vars.staging.yml -------------------------------------------------------------------------------- /vars.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/inventory-app/HEAD/vars.yml.template --------------------------------------------------------------------------------