From 3b9eed074b6214b8f789c44df3ba25592e8e254d Mon Sep 17 00:00:00 2001 From: aanand-gsa Date: Mon, 25 Nov 2024 13:21:46 -0500 Subject: [PATCH 1/7] project name cleanup --- README.md | 2 +- data/landing_zone/README.md | 2 +- .../0002-use-python-as-primary-language.md | 2 +- documentation/architecture/README.md | 4 +- documentation/artifacts/README.md | 2 +- documentation/phase-3-technical-recap.md | 8 +- documentation/terminology.md | 2 +- nad_ch/controllers/web/templates/401.html | 2 +- nad_ch/controllers/web/templates/404.html | 2 +- .../web/templates/_layouts/base.html | 2 +- .../web/templates/_layouts/head.html | 2 +- .../web/templates/_layouts/sidebar.html | 4 +- nad_ch/controllers/web/templates/about.html | 2 +- nad_ch/controllers/web/templates/index.html | 2 +- poetry.lock | 162 +++++++++--------- pyproject.toml | 2 +- 16 files changed, 101 insertions(+), 101 deletions(-) diff --git a/README.md b/README.md index 8f41e1d..cef00ca 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Collaboration Hub (NAD-CH) +# 10x National Address Database Hub (NAD-CH) ## Local Development diff --git a/data/landing_zone/README.md b/data/landing_zone/README.md index 60b081f..3069d38 100644 --- a/data/landing_zone/README.md +++ b/data/landing_zone/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Collaboration Hub (NAD-CH) +# 10x National Address Database Hub (NAD-CH) ## Data Landing Zone diff --git a/documentation/adr/0002-use-python-as-primary-language.md b/documentation/adr/0002-use-python-as-primary-language.md index 5c6ce7a..6597918 100644 --- a/documentation/adr/0002-use-python-as-primary-language.md +++ b/documentation/adr/0002-use-python-as-primary-language.md @@ -8,7 +8,7 @@ Accepted ## Context -Development of the 10x National Address Database Collaboration Hub (NAD-CH) is starting up, and we need to determine a programming language to use. +Development of the 10x National Address Database Hub (NAD-CH) is starting up, and we need to determine a programming language to use. ## Decision diff --git a/documentation/architecture/README.md b/documentation/architecture/README.md index be1ce68..231060a 100644 --- a/documentation/architecture/README.md +++ b/documentation/architecture/README.md @@ -1,8 +1,8 @@ -# NAD Collaboration Hub Architecture +# National Address Database Hub Architecture ### Entry Points -Users can work with the NAD Collaboration Hub by way of: +Users can work with the National Address Database Hub by way of: - **Flask Web Server**: Primary interface for web-based interactions for Data Producers and NAD Administrator. diff --git a/documentation/artifacts/README.md b/documentation/artifacts/README.md index 730e632..cb99ac9 100644 --- a/documentation/artifacts/README.md +++ b/documentation/artifacts/README.md @@ -1,4 +1,4 @@ # Artifacts 1. `mapping_template_populated.csv`: this CSV file represents a valid - column mapping ready for submission to the NAD Collaboration Hub. + column mapping ready for submission to the National Address Database Hub. diff --git a/documentation/phase-3-technical-recap.md b/documentation/phase-3-technical-recap.md index 81f0fc6..f007014 100644 --- a/documentation/phase-3-technical-recap.md +++ b/documentation/phase-3-technical-recap.md @@ -1,14 +1,14 @@ -# 10x NAD Collaboration Hub Technical Recap +# 10x NAD Hub Technical Recap ## Intent -This document provides a high-level overview of the 10x NAD Collaboration Hub Phase 3 to +This document provides a high-level overview of the 10x National Address Database Hub Phase 3 to help developers joining the team for Phase 4, as well as other stakeholders, understand the history of the effort. In addition to providing context, this document summarizes: -- The technical decisions that were made during Phase 3 of 10x NAD Collaboration Hub +- The technical decisions that were made during Phase 3 of 10x National Address Database Hub development - The state of the codebase at the conclusion of Phase 3 - The next steps for Phase 4 in terms of tasks and decision making @@ -29,7 +29,7 @@ According to the [10x website](https://10x.gsa.gov/about/what-we-do/): > require more funding and resources so they move on to the next phase of work, > Phase 4, Scale. -10x NAD Collaboration Hub is one of those cases where additional development effort is +10x National Address Database Hub is one of those cases where additional development effort is necessary. The codebase is more a proof of concept than a minimum viable product as there is a good deal of work needed to get the application up and running for real-world users. diff --git a/documentation/terminology.md b/documentation/terminology.md index 6d8a230..d60275e 100644 --- a/documentation/terminology.md +++ b/documentation/terminology.md @@ -1,4 +1,4 @@ -# NAD Collaboration Hub Terminology +# National Address Database Hub Terminology ## Acronyms diff --git a/nad_ch/controllers/web/templates/401.html b/nad_ch/controllers/web/templates/401.html index e6b19d6..cca693c 100644 --- a/nad_ch/controllers/web/templates/401.html +++ b/nad_ch/controllers/web/templates/401.html @@ -1,6 +1,6 @@ {% extends "_layouts/base.html" %} {% block title %}Home Page{% endblock %} {% block content %} {% from "components/page-header.html" import page_header %} {{ -page_header("NAD Collaboration Hub") }} +page_header("National Address Database Hub") }}

401 Unauthorized

Your request lacks valid authentication credentials.

{% endblock %} diff --git a/nad_ch/controllers/web/templates/404.html b/nad_ch/controllers/web/templates/404.html index 4a0595b..576e7f1 100644 --- a/nad_ch/controllers/web/templates/404.html +++ b/nad_ch/controllers/web/templates/404.html @@ -1,6 +1,6 @@ {% extends "_layouts/base.html" %} {% block title %}Home Page{% endblock %} {% block content %} {% from "components/page-header.html" import page_header %} {{ -page_header("NAD Collaboration Hub") }} +page_header("National Address Database Hub") }}

404 Not Found

The server cannot find the requested resource.

{% endblock %} diff --git a/nad_ch/controllers/web/templates/_layouts/base.html b/nad_ch/controllers/web/templates/_layouts/base.html index 3e15654..e0db46f 100644 --- a/nad_ch/controllers/web/templates/_layouts/base.html +++ b/nad_ch/controllers/web/templates/_layouts/base.html @@ -2,7 +2,7 @@ {% include "_layouts/head.html" with context %} - {% block title %}{% endblock %} - NAD Collaboration Hub + {% block title %}{% endblock %} - National Address Database Hub
diff --git a/nad_ch/controllers/web/templates/_layouts/head.html b/nad_ch/controllers/web/templates/_layouts/head.html index 837954f..604a4e0 100644 --- a/nad_ch/controllers/web/templates/_layouts/head.html +++ b/nad_ch/controllers/web/templates/_layouts/head.html @@ -1,6 +1,6 @@ {% block head %} - + {% if current_user.is_authenticated %} diff --git a/nad_ch/controllers/web/templates/about.html b/nad_ch/controllers/web/templates/about.html index 83ca99e..36d2552 100644 --- a/nad_ch/controllers/web/templates/about.html +++ b/nad_ch/controllers/web/templates/about.html @@ -21,7 +21,7 @@

- The 10x team is piloting the National Address Database Collaboration Hub + The 10x team is piloting the National Address Database Hub (NAD-CH) with the Department of Transportation (DOT) and the U.S. Virgin Island's Geospatial Information Services Division.

diff --git a/nad_ch/controllers/web/templates/index.html b/nad_ch/controllers/web/templates/index.html index f6bfe0e..7271d0c 100644 --- a/nad_ch/controllers/web/templates/index.html +++ b/nad_ch/controllers/web/templates/index.html @@ -1,6 +1,6 @@ {% extends "_layouts/base.html" %} {% block title %}Home Page{% endblock %} {% from "components/page-header.html" import page_header %} {% block content %} {{ -page_header("NAD Collaboration Hub") }} {% if current_user.is_authenticated %} +page_header("National Address Database Hub") }} {% if current_user.is_authenticated %}

Hi, {{ current_user.email }}!

Thanks for logging in with {{ current_user.login_provider }}.

{% else %} diff --git a/poetry.lock b/poetry.lock index f0dcfc0..de46e56 100644 --- a/poetry.lock +++ b/poetry.lock @@ -202,17 +202,17 @@ files = [ [[package]] name = "boto3" -version = "1.35.59" +version = "1.35.68" description = "The AWS SDK for Python" optional = false python-versions = ">=3.8" files = [ - {file = "boto3-1.35.59-py3-none-any.whl", hash = "sha256:8f8ff97cb9cb2e1ec7374209d0c09c1926b75604d6464c34bafaffd6d6cf0529"}, - {file = "boto3-1.35.59.tar.gz", hash = "sha256:81f4d8d6eff3e26b82cabd42eda816cfac9482821fdef353f18d2ba2f6e75f2d"}, + {file = "boto3-1.35.68-py3-none-any.whl", hash = "sha256:9b26fa31901da7793c1dcd65eee9bab7e897d8aa1ffed0b5e1c3bce93d2aefe4"}, + {file = "boto3-1.35.68.tar.gz", hash = "sha256:091d6bed1422370987a839bff3f8755df7404fc15e9fac2a48e8505356f07433"}, ] [package.dependencies] -botocore = ">=1.35.59,<1.36.0" +botocore = ">=1.35.68,<1.36.0" jmespath = ">=0.7.1,<2.0.0" s3transfer = ">=0.10.0,<0.11.0" @@ -221,13 +221,13 @@ crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] [[package]] name = "botocore" -version = "1.35.59" +version = "1.35.68" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" files = [ - {file = "botocore-1.35.59-py3-none-any.whl", hash = "sha256:bcd66d7f55c8d1b6020eb86f2d87893fe591fb4be6a7d2a689c18be586452334"}, - {file = "botocore-1.35.59.tar.gz", hash = "sha256:de0ce655fedfc02c87869dfaa3b622488a17ff37da316ef8106cbe1573b83c98"}, + {file = "botocore-1.35.68-py3-none-any.whl", hash = "sha256:599139d5564291f5be873800711f9e4e14a823395ae9ce7b142be775e9849b94"}, + {file = "botocore-1.35.68.tar.gz", hash = "sha256:42c3700583a82f2b5316281a073d644a521d6358837e2b446dc458ba5d990fb4"}, ] [package.dependencies] @@ -591,73 +591,73 @@ files = [ [[package]] name = "coverage" -version = "7.6.4" +version = "7.6.8" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.9" files = [ - {file = "coverage-7.6.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5f8ae553cba74085db385d489c7a792ad66f7f9ba2ee85bfa508aeb84cf0ba07"}, - {file = "coverage-7.6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8165b796df0bd42e10527a3f493c592ba494f16ef3c8b531288e3d0d72c1f6f0"}, - {file = "coverage-7.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7c8b95bf47db6d19096a5e052ffca0a05f335bc63cef281a6e8fe864d450a72"}, - {file = "coverage-7.6.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ed9281d1b52628e81393f5eaee24a45cbd64965f41857559c2b7ff19385df51"}, - {file = "coverage-7.6.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0809082ee480bb8f7416507538243c8863ac74fd8a5d2485c46f0f7499f2b491"}, - {file = "coverage-7.6.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d541423cdd416b78626b55f123412fcf979d22a2c39fce251b350de38c15c15b"}, - {file = "coverage-7.6.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:58809e238a8a12a625c70450b48e8767cff9eb67c62e6154a642b21ddf79baea"}, - {file = "coverage-7.6.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c9b8e184898ed014884ca84c70562b4a82cbc63b044d366fedc68bc2b2f3394a"}, - {file = "coverage-7.6.4-cp310-cp310-win32.whl", hash = "sha256:6bd818b7ea14bc6e1f06e241e8234508b21edf1b242d49831831a9450e2f35fa"}, - {file = "coverage-7.6.4-cp310-cp310-win_amd64.whl", hash = "sha256:06babbb8f4e74b063dbaeb74ad68dfce9186c595a15f11f5d5683f748fa1d172"}, - {file = "coverage-7.6.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:73d2b73584446e66ee633eaad1a56aad577c077f46c35ca3283cd687b7715b0b"}, - {file = "coverage-7.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:51b44306032045b383a7a8a2c13878de375117946d68dcb54308111f39775a25"}, - {file = "coverage-7.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b3fb02fe73bed561fa12d279a417b432e5b50fe03e8d663d61b3d5990f29546"}, - {file = "coverage-7.6.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed8fe9189d2beb6edc14d3ad19800626e1d9f2d975e436f84e19efb7fa19469b"}, - {file = "coverage-7.6.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b369ead6527d025a0fe7bd3864e46dbee3aa8f652d48df6174f8d0bac9e26e0e"}, - {file = "coverage-7.6.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ade3ca1e5f0ff46b678b66201f7ff477e8fa11fb537f3b55c3f0568fbfe6e718"}, - {file = "coverage-7.6.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:27fb4a050aaf18772db513091c9c13f6cb94ed40eacdef8dad8411d92d9992db"}, - {file = "coverage-7.6.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4f704f0998911abf728a7783799444fcbbe8261c4a6c166f667937ae6a8aa522"}, - {file = "coverage-7.6.4-cp311-cp311-win32.whl", hash = "sha256:29155cd511ee058e260db648b6182c419422a0d2e9a4fa44501898cf918866cf"}, - {file = "coverage-7.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:8902dd6a30173d4ef09954bfcb24b5d7b5190cf14a43170e386979651e09ba19"}, - {file = "coverage-7.6.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:12394842a3a8affa3ba62b0d4ab7e9e210c5e366fbac3e8b2a68636fb19892c2"}, - {file = "coverage-7.6.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2b6b4c83d8e8ea79f27ab80778c19bc037759aea298da4b56621f4474ffeb117"}, - {file = "coverage-7.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d5b8007f81b88696d06f7df0cb9af0d3b835fe0c8dbf489bad70b45f0e45613"}, - {file = "coverage-7.6.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b57b768feb866f44eeed9f46975f3d6406380275c5ddfe22f531a2bf187eda27"}, - {file = "coverage-7.6.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5915fcdec0e54ee229926868e9b08586376cae1f5faa9bbaf8faf3561b393d52"}, - {file = "coverage-7.6.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0b58c672d14f16ed92a48db984612f5ce3836ae7d72cdd161001cc54512571f2"}, - {file = "coverage-7.6.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:2fdef0d83a2d08d69b1f2210a93c416d54e14d9eb398f6ab2f0a209433db19e1"}, - {file = "coverage-7.6.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8cf717ee42012be8c0cb205dbbf18ffa9003c4cbf4ad078db47b95e10748eec5"}, - {file = "coverage-7.6.4-cp312-cp312-win32.whl", hash = "sha256:7bb92c539a624cf86296dd0c68cd5cc286c9eef2d0c3b8b192b604ce9de20a17"}, - {file = "coverage-7.6.4-cp312-cp312-win_amd64.whl", hash = "sha256:1032e178b76a4e2b5b32e19d0fd0abbce4b58e77a1ca695820d10e491fa32b08"}, - {file = "coverage-7.6.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:023bf8ee3ec6d35af9c1c6ccc1d18fa69afa1cb29eaac57cb064dbb262a517f9"}, - {file = "coverage-7.6.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b0ac3d42cb51c4b12df9c5f0dd2f13a4f24f01943627120ec4d293c9181219ba"}, - {file = "coverage-7.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8fe4984b431f8621ca53d9380901f62bfb54ff759a1348cd140490ada7b693c"}, - {file = "coverage-7.6.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fbd612f8a091954a0c8dd4c0b571b973487277d26476f8480bfa4b2a65b5d06"}, - {file = "coverage-7.6.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dacbc52de979f2823a819571f2e3a350a7e36b8cb7484cdb1e289bceaf35305f"}, - {file = "coverage-7.6.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dab4d16dfef34b185032580e2f2f89253d302facba093d5fa9dbe04f569c4f4b"}, - {file = "coverage-7.6.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:862264b12ebb65ad8d863d51f17758b1684560b66ab02770d4f0baf2ff75da21"}, - {file = "coverage-7.6.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5beb1ee382ad32afe424097de57134175fea3faf847b9af002cc7895be4e2a5a"}, - {file = "coverage-7.6.4-cp313-cp313-win32.whl", hash = "sha256:bf20494da9653f6410213424f5f8ad0ed885e01f7e8e59811f572bdb20b8972e"}, - {file = "coverage-7.6.4-cp313-cp313-win_amd64.whl", hash = "sha256:182e6cd5c040cec0a1c8d415a87b67ed01193ed9ad458ee427741c7d8513d963"}, - {file = "coverage-7.6.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a181e99301a0ae128493a24cfe5cfb5b488c4e0bf2f8702091473d033494d04f"}, - {file = "coverage-7.6.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:df57bdbeffe694e7842092c5e2e0bc80fff7f43379d465f932ef36f027179806"}, - {file = "coverage-7.6.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bcd1069e710600e8e4cf27f65c90c7843fa8edfb4520fb0ccb88894cad08b11"}, - {file = "coverage-7.6.4-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99b41d18e6b2a48ba949418db48159d7a2e81c5cc290fc934b7d2380515bd0e3"}, - {file = "coverage-7.6.4-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6b1e54712ba3474f34b7ef7a41e65bd9037ad47916ccb1cc78769bae324c01a"}, - {file = "coverage-7.6.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:53d202fd109416ce011578f321460795abfe10bb901b883cafd9b3ef851bacfc"}, - {file = "coverage-7.6.4-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:c48167910a8f644671de9f2083a23630fbf7a1cb70ce939440cd3328e0919f70"}, - {file = "coverage-7.6.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:cc8ff50b50ce532de2fa7a7daae9dd12f0a699bfcd47f20945364e5c31799fef"}, - {file = "coverage-7.6.4-cp313-cp313t-win32.whl", hash = "sha256:b8d3a03d9bfcaf5b0141d07a88456bb6a4c3ce55c080712fec8418ef3610230e"}, - {file = "coverage-7.6.4-cp313-cp313t-win_amd64.whl", hash = "sha256:f3ddf056d3ebcf6ce47bdaf56142af51bb7fad09e4af310241e9db7a3a8022e1"}, - {file = "coverage-7.6.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cb7fa111d21a6b55cbf633039f7bc2749e74932e3aa7cb7333f675a58a58bf3"}, - {file = "coverage-7.6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:11a223a14e91a4693d2d0755c7a043db43d96a7450b4f356d506c2562c48642c"}, - {file = "coverage-7.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a413a096c4cbac202433c850ee43fa326d2e871b24554da8327b01632673a076"}, - {file = "coverage-7.6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00a1d69c112ff5149cabe60d2e2ee948752c975d95f1e1096742e6077affd376"}, - {file = "coverage-7.6.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f76846299ba5c54d12c91d776d9605ae33f8ae2b9d1d3c3703cf2db1a67f2c0"}, - {file = "coverage-7.6.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fe439416eb6380de434886b00c859304338f8b19f6f54811984f3420a2e03858"}, - {file = "coverage-7.6.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:0294ca37f1ba500667b1aef631e48d875ced93ad5e06fa665a3295bdd1d95111"}, - {file = "coverage-7.6.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6f01ba56b1c0e9d149f9ac85a2f999724895229eb36bd997b61e62999e9b0901"}, - {file = "coverage-7.6.4-cp39-cp39-win32.whl", hash = "sha256:bc66f0bf1d7730a17430a50163bb264ba9ded56739112368ba985ddaa9c3bd09"}, - {file = "coverage-7.6.4-cp39-cp39-win_amd64.whl", hash = "sha256:c481b47f6b5845064c65a7bc78bc0860e635a9b055af0df46fdf1c58cebf8e8f"}, - {file = "coverage-7.6.4-pp39.pp310-none-any.whl", hash = "sha256:3c65d37f3a9ebb703e710befdc489a38683a5b152242664b973a7b7b22348a4e"}, - {file = "coverage-7.6.4.tar.gz", hash = "sha256:29fc0f17b1d3fea332f8001d4558f8214af7f1d87a345f3a133c901d60347c73"}, + {file = "coverage-7.6.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b39e6011cd06822eb964d038d5dff5da5d98652b81f5ecd439277b32361a3a50"}, + {file = "coverage-7.6.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:63c19702db10ad79151a059d2d6336fe0c470f2e18d0d4d1a57f7f9713875dcf"}, + {file = "coverage-7.6.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3985b9be361d8fb6b2d1adc9924d01dec575a1d7453a14cccd73225cb79243ee"}, + {file = "coverage-7.6.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:644ec81edec0f4ad17d51c838a7d01e42811054543b76d4ba2c5d6af741ce2a6"}, + {file = "coverage-7.6.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f188a2402f8359cf0c4b1fe89eea40dc13b52e7b4fd4812450da9fcd210181d"}, + {file = "coverage-7.6.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e19122296822deafce89a0c5e8685704c067ae65d45e79718c92df7b3ec3d331"}, + {file = "coverage-7.6.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13618bed0c38acc418896005732e565b317aa9e98d855a0e9f211a7ffc2d6638"}, + {file = "coverage-7.6.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:193e3bffca48ad74b8c764fb4492dd875038a2f9925530cb094db92bb5e47bed"}, + {file = "coverage-7.6.8-cp310-cp310-win32.whl", hash = "sha256:3988665ee376abce49613701336544041f2117de7b7fbfe91b93d8ff8b151c8e"}, + {file = "coverage-7.6.8-cp310-cp310-win_amd64.whl", hash = "sha256:f56f49b2553d7dd85fd86e029515a221e5c1f8cb3d9c38b470bc38bde7b8445a"}, + {file = "coverage-7.6.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:86cffe9c6dfcfe22e28027069725c7f57f4b868a3f86e81d1c62462764dc46d4"}, + {file = "coverage-7.6.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d82ab6816c3277dc962cfcdc85b1efa0e5f50fb2c449432deaf2398a2928ab94"}, + {file = "coverage-7.6.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13690e923a3932e4fad4c0ebfb9cb5988e03d9dcb4c5150b5fcbf58fd8bddfc4"}, + {file = "coverage-7.6.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4be32da0c3827ac9132bb488d331cb32e8d9638dd41a0557c5569d57cf22c9c1"}, + {file = "coverage-7.6.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44e6c85bbdc809383b509d732b06419fb4544dca29ebe18480379633623baafb"}, + {file = "coverage-7.6.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:768939f7c4353c0fac2f7c37897e10b1414b571fd85dd9fc49e6a87e37a2e0d8"}, + {file = "coverage-7.6.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e44961e36cb13c495806d4cac67640ac2866cb99044e210895b506c26ee63d3a"}, + {file = "coverage-7.6.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3ea8bb1ab9558374c0ab591783808511d135a833c3ca64a18ec927f20c4030f0"}, + {file = "coverage-7.6.8-cp311-cp311-win32.whl", hash = "sha256:629a1ba2115dce8bf75a5cce9f2486ae483cb89c0145795603d6554bdc83e801"}, + {file = "coverage-7.6.8-cp311-cp311-win_amd64.whl", hash = "sha256:fb9fc32399dca861584d96eccd6c980b69bbcd7c228d06fb74fe53e007aa8ef9"}, + {file = "coverage-7.6.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e683e6ecc587643f8cde8f5da6768e9d165cd31edf39ee90ed7034f9ca0eefee"}, + {file = "coverage-7.6.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1defe91d41ce1bd44b40fabf071e6a01a5aa14de4a31b986aa9dfd1b3e3e414a"}, + {file = "coverage-7.6.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7ad66e8e50225ebf4236368cc43c37f59d5e6728f15f6e258c8639fa0dd8e6d"}, + {file = "coverage-7.6.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fe47da3e4fda5f1abb5709c156eca207eacf8007304ce3019eb001e7a7204cb"}, + {file = "coverage-7.6.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:202a2d645c5a46b84992f55b0a3affe4f0ba6b4c611abec32ee88358db4bb649"}, + {file = "coverage-7.6.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4674f0daa1823c295845b6a740d98a840d7a1c11df00d1fd62614545c1583787"}, + {file = "coverage-7.6.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:74610105ebd6f33d7c10f8907afed696e79c59e3043c5f20eaa3a46fddf33b4c"}, + {file = "coverage-7.6.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37cda8712145917105e07aab96388ae76e787270ec04bcb9d5cc786d7cbb8443"}, + {file = "coverage-7.6.8-cp312-cp312-win32.whl", hash = "sha256:9e89d5c8509fbd6c03d0dd1972925b22f50db0792ce06324ba069f10787429ad"}, + {file = "coverage-7.6.8-cp312-cp312-win_amd64.whl", hash = "sha256:379c111d3558272a2cae3d8e57e6b6e6f4fe652905692d54bad5ea0ca37c5ad4"}, + {file = "coverage-7.6.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0b0c69f4f724c64dfbfe79f5dfb503b42fe6127b8d479b2677f2b227478db2eb"}, + {file = "coverage-7.6.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c15b32a7aca8038ed7644f854bf17b663bc38e1671b5d6f43f9a2b2bd0c46f63"}, + {file = "coverage-7.6.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63068a11171e4276f6ece913bde059e77c713b48c3a848814a6537f35afb8365"}, + {file = "coverage-7.6.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f4548c5ead23ad13fb7a2c8ea541357474ec13c2b736feb02e19a3085fac002"}, + {file = "coverage-7.6.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4b4299dd0d2c67caaaf286d58aef5e75b125b95615dda4542561a5a566a1e3"}, + {file = "coverage-7.6.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c9ebfb2507751f7196995142f057d1324afdab56db1d9743aab7f50289abd022"}, + {file = "coverage-7.6.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:c1b4474beee02ede1eef86c25ad4600a424fe36cff01a6103cb4533c6bf0169e"}, + {file = "coverage-7.6.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d9fd2547e6decdbf985d579cf3fc78e4c1d662b9b0ff7cc7862baaab71c9cc5b"}, + {file = "coverage-7.6.8-cp313-cp313-win32.whl", hash = "sha256:8aae5aea53cbfe024919715eca696b1a3201886ce83790537d1c3668459c7146"}, + {file = "coverage-7.6.8-cp313-cp313-win_amd64.whl", hash = "sha256:ae270e79f7e169ccfe23284ff5ea2d52a6f401dc01b337efb54b3783e2ce3f28"}, + {file = "coverage-7.6.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:de38add67a0af869b0d79c525d3e4588ac1ffa92f39116dbe0ed9753f26eba7d"}, + {file = "coverage-7.6.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b07c25d52b1c16ce5de088046cd2432b30f9ad5e224ff17c8f496d9cb7d1d451"}, + {file = "coverage-7.6.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62a66ff235e4c2e37ed3b6104d8b478d767ff73838d1222132a7a026aa548764"}, + {file = "coverage-7.6.8-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09b9f848b28081e7b975a3626e9081574a7b9196cde26604540582da60235fdf"}, + {file = "coverage-7.6.8-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:093896e530c38c8e9c996901858ac63f3d4171268db2c9c8b373a228f459bbc5"}, + {file = "coverage-7.6.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9a7b8ac36fd688c8361cbc7bf1cb5866977ece6e0b17c34aa0df58bda4fa18a4"}, + {file = "coverage-7.6.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:38c51297b35b3ed91670e1e4efb702b790002e3245a28c76e627478aa3c10d83"}, + {file = "coverage-7.6.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2e4e0f60cb4bd7396108823548e82fdab72d4d8a65e58e2c19bbbc2f1e2bfa4b"}, + {file = "coverage-7.6.8-cp313-cp313t-win32.whl", hash = "sha256:6535d996f6537ecb298b4e287a855f37deaf64ff007162ec0afb9ab8ba3b8b71"}, + {file = "coverage-7.6.8-cp313-cp313t-win_amd64.whl", hash = "sha256:c79c0685f142ca53256722a384540832420dff4ab15fec1863d7e5bc8691bdcc"}, + {file = "coverage-7.6.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3ac47fa29d8d41059ea3df65bd3ade92f97ee4910ed638e87075b8e8ce69599e"}, + {file = "coverage-7.6.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:24eda3a24a38157eee639ca9afe45eefa8d2420d49468819ac5f88b10de84f4c"}, + {file = "coverage-7.6.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4c81ed2820b9023a9a90717020315e63b17b18c274a332e3b6437d7ff70abe0"}, + {file = "coverage-7.6.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd55f8fc8fa494958772a2a7302b0354ab16e0b9272b3c3d83cdb5bec5bd1779"}, + {file = "coverage-7.6.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f39e2f3530ed1626c66e7493be7a8423b023ca852aacdc91fb30162c350d2a92"}, + {file = "coverage-7.6.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:716a78a342679cd1177bc8c2fe957e0ab91405bd43a17094324845200b2fddf4"}, + {file = "coverage-7.6.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:177f01eeaa3aee4a5ffb0d1439c5952b53d5010f86e9d2667963e632e30082cc"}, + {file = "coverage-7.6.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:912e95017ff51dc3d7b6e2be158dedc889d9a5cc3382445589ce554f1a34c0ea"}, + {file = "coverage-7.6.8-cp39-cp39-win32.whl", hash = "sha256:4db3ed6a907b555e57cc2e6f14dc3a4c2458cdad8919e40b5357ab9b6db6c43e"}, + {file = "coverage-7.6.8-cp39-cp39-win_amd64.whl", hash = "sha256:428ac484592f780e8cd7b6b14eb568f7c85460c92e2a37cb0c0e5186e1a0d076"}, + {file = "coverage-7.6.8-pp39.pp310-none-any.whl", hash = "sha256:5c52a036535d12590c32c49209e79cabaad9f9ad8aa4cbd875b68c4d67a9cbce"}, + {file = "coverage-7.6.8.tar.gz", hash = "sha256:8b2b8503edb06822c86d82fa64a4a5cb0760bb8f31f26e138ec743f422f37cfc"}, ] [package.extras] @@ -1116,13 +1116,13 @@ files = [ [[package]] name = "minio" -version = "7.2.10" +version = "7.2.11" description = "MinIO Python SDK for Amazon S3 Compatible Cloud Storage" optional = false -python-versions = ">3.8" +python-versions = ">=3.9" files = [ - {file = "minio-7.2.10-py3-none-any.whl", hash = "sha256:5961c58192b1d70d3a2a362064b8e027b8232688998a6d1251dadbb02ab57a7d"}, - {file = "minio-7.2.10.tar.gz", hash = "sha256:418c31ac79346a580df04a0e14db1becbc548a6e7cca61f9bc4ef3bcd336c449"}, + {file = "minio-7.2.11-py3-none-any.whl", hash = "sha256:153582ed52ff3b5005ba558e1f25bfe1e9e834f7f0745e594777f28e3e81e1a0"}, + {file = "minio-7.2.11.tar.gz", hash = "sha256:4db95a21fe1e2022ec975292d8a1f83bd5b18f830d23d42a4518ac7a5281d7c5"}, ] [package.dependencies] @@ -1540,13 +1540,13 @@ files = [ [[package]] name = "pyjwt" -version = "2.9.0" +version = "2.10.0" description = "JSON Web Token implementation in Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, + {file = "PyJWT-2.10.0-py3-none-any.whl", hash = "sha256:543b77207db656de204372350926bed5a86201c4cbff159f623f79c7bb487a15"}, + {file = "pyjwt-2.10.0.tar.gz", hash = "sha256:7628a7eb7938959ac1b26e819a1df0fd3259505627b575e4bad6d08f76db695c"}, ] [package.extras] @@ -1799,13 +1799,13 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] name = "s3transfer" -version = "0.10.3" +version = "0.10.4" description = "An Amazon S3 Transfer Manager" optional = false python-versions = ">=3.8" files = [ - {file = "s3transfer-0.10.3-py3-none-any.whl", hash = "sha256:263ed587a5803c6c708d3ce44dc4dfedaab4c1a32e8329bab818933d79ddcf5d"}, - {file = "s3transfer-0.10.3.tar.gz", hash = "sha256:4f50ed74ab84d474ce614475e0b8d5047ff080810aac5d01ea25231cfc944b0c"}, + {file = "s3transfer-0.10.4-py3-none-any.whl", hash = "sha256:244a76a24355363a68164241438de1b72f8781664920260c48465896b712a41e"}, + {file = "s3transfer-0.10.4.tar.gz", hash = "sha256:29edc09801743c21eb5ecbc617a152df41d3c287f67b615f73e5f750583666a7"}, ] [package.dependencies] diff --git a/pyproject.toml b/pyproject.toml index e870025..2d5ff82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "nad_ch" version = "0.1.0" -description = "10x National Address Database Collaboration Hub (NAD-CH)" +description = "10x National Address Database Hub (NAD-CH)" authors = [] [tool.poetry.dependencies] From 3c441c23e61150b4f2d96a77d83eea21ffefb0e3 Mon Sep 17 00:00:00 2001 From: aanand-gsa Date: Mon, 25 Nov 2024 13:26:15 -0500 Subject: [PATCH 2/7] project name cleanup --- README.md | 2 +- data/landing_zone/README.md | 2 +- documentation/adr/0002-use-python-as-primary-language.md | 2 +- nad_ch/controllers/web/templates/about.html | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cef00ca..d007817 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Hub (NAD-CH) +# 10x National Address Database Hub ## Local Development diff --git a/data/landing_zone/README.md b/data/landing_zone/README.md index 3069d38..390f49c 100644 --- a/data/landing_zone/README.md +++ b/data/landing_zone/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Hub (NAD-CH) +# 10x National Address Database Hub ## Data Landing Zone diff --git a/documentation/adr/0002-use-python-as-primary-language.md b/documentation/adr/0002-use-python-as-primary-language.md index 6597918..a102728 100644 --- a/documentation/adr/0002-use-python-as-primary-language.md +++ b/documentation/adr/0002-use-python-as-primary-language.md @@ -8,7 +8,7 @@ Accepted ## Context -Development of the 10x National Address Database Hub (NAD-CH) is starting up, and we need to determine a programming language to use. +Development of the 10x National Address Database Hub is starting up, and we need to determine a programming language to use. ## Decision diff --git a/nad_ch/controllers/web/templates/about.html b/nad_ch/controllers/web/templates/about.html index 36d2552..b9ee0b3 100644 --- a/nad_ch/controllers/web/templates/about.html +++ b/nad_ch/controllers/web/templates/about.html @@ -22,7 +22,7 @@

The 10x team is piloting the National Address Database Hub - (NAD-CH) with the Department of Transportation (DOT) and the U.S. Virgin + with the Department of Transportation (DOT) and the U.S. Virgin Island's Geospatial Information Services Division.

diff --git a/pyproject.toml b/pyproject.toml index 2d5ff82..bbc02a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "nad_ch" version = "0.1.0" -description = "10x National Address Database Hub (NAD-CH)" +description = "10x National Address Database Hub" authors = [] [tool.poetry.dependencies] From 57f154e8098afb1cb454f1c01d1780be78573100 Mon Sep 17 00:00:00 2001 From: aanand-gsa Date: Wed, 4 Dec 2024 10:52:31 -0500 Subject: [PATCH 3/7] Hub getting replaced with Submission Tool --- README.md | 2 +- data/landing_zone/README.md | 2 +- documentation/adr/0002-use-python-as-primary-language.md | 2 +- documentation/architecture/README.md | 4 ++-- documentation/artifacts/README.md | 2 +- documentation/phase-3-technical-recap.md | 8 ++++---- documentation/terminology.md | 2 +- nad_ch/controllers/web/templates/401.html | 2 +- nad_ch/controllers/web/templates/404.html | 2 +- nad_ch/controllers/web/templates/_layouts/base.html | 2 +- nad_ch/controllers/web/templates/_layouts/head.html | 2 +- nad_ch/controllers/web/templates/_layouts/sidebar.html | 2 +- nad_ch/controllers/web/templates/about.html | 2 +- nad_ch/controllers/web/templates/index.html | 2 +- pyproject.toml | 2 +- 15 files changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index d007817..c19c312 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Hub +# 10x National Address Database Submission Tool ## Local Development diff --git a/data/landing_zone/README.md b/data/landing_zone/README.md index 390f49c..54ea64e 100644 --- a/data/landing_zone/README.md +++ b/data/landing_zone/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Hub +# 10x National Address Database Submission Tool ## Data Landing Zone diff --git a/documentation/adr/0002-use-python-as-primary-language.md b/documentation/adr/0002-use-python-as-primary-language.md index a102728..c3fca84 100644 --- a/documentation/adr/0002-use-python-as-primary-language.md +++ b/documentation/adr/0002-use-python-as-primary-language.md @@ -8,7 +8,7 @@ Accepted ## Context -Development of the 10x National Address Database Hub is starting up, and we need to determine a programming language to use. +Development of the 10x National Address Database Submission Tool is starting up, and we need to determine a programming language to use. ## Decision diff --git a/documentation/architecture/README.md b/documentation/architecture/README.md index 231060a..dfb2607 100644 --- a/documentation/architecture/README.md +++ b/documentation/architecture/README.md @@ -1,8 +1,8 @@ -# National Address Database Hub Architecture +# National Address Database Submission Tool Architecture ### Entry Points -Users can work with the National Address Database Hub by way of: +Users can work with the National Address Database Submission Tool by way of: - **Flask Web Server**: Primary interface for web-based interactions for Data Producers and NAD Administrator. diff --git a/documentation/artifacts/README.md b/documentation/artifacts/README.md index cb99ac9..8b2bb22 100644 --- a/documentation/artifacts/README.md +++ b/documentation/artifacts/README.md @@ -1,4 +1,4 @@ # Artifacts 1. `mapping_template_populated.csv`: this CSV file represents a valid - column mapping ready for submission to the National Address Database Hub. + column mapping ready for submission to the National Address Database Submission Tool. diff --git a/documentation/phase-3-technical-recap.md b/documentation/phase-3-technical-recap.md index f007014..327b28f 100644 --- a/documentation/phase-3-technical-recap.md +++ b/documentation/phase-3-technical-recap.md @@ -1,14 +1,14 @@ -# 10x NAD Hub Technical Recap +# 10x NAD Submission Tool Technical Recap ## Intent -This document provides a high-level overview of the 10x National Address Database Hub Phase 3 to +This document provides a high-level overview of the 10x National Address Database Submission Tool Phase 3 to help developers joining the team for Phase 4, as well as other stakeholders, understand the history of the effort. In addition to providing context, this document summarizes: -- The technical decisions that were made during Phase 3 of 10x National Address Database Hub +- The technical decisions that were made during Phase 3 of 10x National Address Database Submission Tool development - The state of the codebase at the conclusion of Phase 3 - The next steps for Phase 4 in terms of tasks and decision making @@ -29,7 +29,7 @@ According to the [10x website](https://10x.gsa.gov/about/what-we-do/): > require more funding and resources so they move on to the next phase of work, > Phase 4, Scale. -10x National Address Database Hub is one of those cases where additional development effort is +10x National Address Database Submission Tool is one of those cases where additional development effort is necessary. The codebase is more a proof of concept than a minimum viable product as there is a good deal of work needed to get the application up and running for real-world users. diff --git a/documentation/terminology.md b/documentation/terminology.md index d60275e..f9d15cb 100644 --- a/documentation/terminology.md +++ b/documentation/terminology.md @@ -1,4 +1,4 @@ -# National Address Database Hub Terminology +# National Address Database Submission Tool Terminology ## Acronyms diff --git a/nad_ch/controllers/web/templates/401.html b/nad_ch/controllers/web/templates/401.html index cca693c..a0ab9c6 100644 --- a/nad_ch/controllers/web/templates/401.html +++ b/nad_ch/controllers/web/templates/401.html @@ -1,6 +1,6 @@ {% extends "_layouts/base.html" %} {% block title %}Home Page{% endblock %} {% block content %} {% from "components/page-header.html" import page_header %} {{ -page_header("National Address Database Hub") }} +page_header("National Address Database Submission Tool") }}

401 Unauthorized

Your request lacks valid authentication credentials.

{% endblock %} diff --git a/nad_ch/controllers/web/templates/404.html b/nad_ch/controllers/web/templates/404.html index 576e7f1..8f04d45 100644 --- a/nad_ch/controllers/web/templates/404.html +++ b/nad_ch/controllers/web/templates/404.html @@ -1,6 +1,6 @@ {% extends "_layouts/base.html" %} {% block title %}Home Page{% endblock %} {% block content %} {% from "components/page-header.html" import page_header %} {{ -page_header("National Address Database Hub") }} +page_header("National Address Database Submission Tool") }}

404 Not Found

The server cannot find the requested resource.

{% endblock %} diff --git a/nad_ch/controllers/web/templates/_layouts/base.html b/nad_ch/controllers/web/templates/_layouts/base.html index e0db46f..fc74a38 100644 --- a/nad_ch/controllers/web/templates/_layouts/base.html +++ b/nad_ch/controllers/web/templates/_layouts/base.html @@ -2,7 +2,7 @@ {% include "_layouts/head.html" with context %} - {% block title %}{% endblock %} - National Address Database Hub + {% block title %}{% endblock %} - National Address Database Submission Tool
diff --git a/nad_ch/controllers/web/templates/_layouts/head.html b/nad_ch/controllers/web/templates/_layouts/head.html index 604a4e0..664211d 100644 --- a/nad_ch/controllers/web/templates/_layouts/head.html +++ b/nad_ch/controllers/web/templates/_layouts/head.html @@ -1,6 +1,6 @@ {% block head %} - + National Address - Database Hub + Database Submission Tool
{% if current_user.is_authenticated %} diff --git a/nad_ch/controllers/web/templates/about.html b/nad_ch/controllers/web/templates/about.html index b9ee0b3..744e74a 100644 --- a/nad_ch/controllers/web/templates/about.html +++ b/nad_ch/controllers/web/templates/about.html @@ -21,7 +21,7 @@

- The 10x team is piloting the National Address Database Hub + The 10x team is piloting the National Address Database Submission Tool with the Department of Transportation (DOT) and the U.S. Virgin Island's Geospatial Information Services Division.

diff --git a/nad_ch/controllers/web/templates/index.html b/nad_ch/controllers/web/templates/index.html index 7271d0c..6198cfc 100644 --- a/nad_ch/controllers/web/templates/index.html +++ b/nad_ch/controllers/web/templates/index.html @@ -1,6 +1,6 @@ {% extends "_layouts/base.html" %} {% block title %}Home Page{% endblock %} {% from "components/page-header.html" import page_header %} {% block content %} {{ -page_header("National Address Database Hub") }} {% if current_user.is_authenticated %} +page_header("National Address Database Submission Tool") }} {% if current_user.is_authenticated %}

Hi, {{ current_user.email }}!

Thanks for logging in with {{ current_user.login_provider }}.

{% else %} diff --git a/pyproject.toml b/pyproject.toml index bbc02a4..e541ba1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "nad_ch" version = "0.1.0" -description = "10x National Address Database Hub" +description = "10x National Address Database Submission Tool" authors = [] [tool.poetry.dependencies] From b9f62c2b37788b3eef89bbd48d4beece0e190a4e Mon Sep 17 00:00:00 2001 From: aanand-gsa Date: Wed, 4 Dec 2024 10:56:19 -0500 Subject: [PATCH 4/7] replacing (NAD-CH) with (NAD-ST) --- README.md | 2 +- data/landing_zone/README.md | 2 +- documentation/adr/0002-use-python-as-primary-language.md | 2 +- nad_ch/controllers/web/templates/about.html | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c19c312..3650839 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Submission Tool +# 10x National Address Database Submission Tool (NAD-ST) ## Local Development diff --git a/data/landing_zone/README.md b/data/landing_zone/README.md index 54ea64e..4056461 100644 --- a/data/landing_zone/README.md +++ b/data/landing_zone/README.md @@ -1,4 +1,4 @@ -# 10x National Address Database Submission Tool +# 10x National Address Database Submission Tool (NAD-ST) ## Data Landing Zone diff --git a/documentation/adr/0002-use-python-as-primary-language.md b/documentation/adr/0002-use-python-as-primary-language.md index c3fca84..3ef65ae 100644 --- a/documentation/adr/0002-use-python-as-primary-language.md +++ b/documentation/adr/0002-use-python-as-primary-language.md @@ -8,7 +8,7 @@ Accepted ## Context -Development of the 10x National Address Database Submission Tool is starting up, and we need to determine a programming language to use. +Development of the 10x National Address Database Submission Tool (NAD-ST) is starting up, and we need to determine a programming language to use. ## Decision diff --git a/nad_ch/controllers/web/templates/about.html b/nad_ch/controllers/web/templates/about.html index 744e74a..0d39448 100644 --- a/nad_ch/controllers/web/templates/about.html +++ b/nad_ch/controllers/web/templates/about.html @@ -22,7 +22,7 @@

The 10x team is piloting the National Address Database Submission Tool - with the Department of Transportation (DOT) and the U.S. Virgin + (NAD-ST) with the Department of Transportation (DOT) and the U.S. Virgin Island's Geospatial Information Services Division.

diff --git a/pyproject.toml b/pyproject.toml index e541ba1..8c6e0c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "nad_ch" version = "0.1.0" -description = "10x National Address Database Submission Tool" +description = "10x National Address Database Submission Tool (NAD-ST)" authors = [] [tool.poetry.dependencies] From dced36ba943f39f3726daa84a0b2b9b268e12f2e Mon Sep 17 00:00:00 2001 From: aanand-gsa Date: Thu, 5 Dec 2024 10:23:41 -0500 Subject: [PATCH 5/7] updating `10x-nad-ch` to `10x-nad-st` --- .github/workflows/deploy-dev.yml | 2 +- README.md | 2 +- manifest-dev.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index 379771a..01a3f73 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -47,4 +47,4 @@ jobs: cf_password: ${{ secrets.CF_PASSWORD }} cf_org: ${{ secrets.CF_ORG }} cf_space: ${{ secrets.CF_SPACE }} - push_arguments: "-f manifest-dev.yml 10x-nad-ch-dev" + push_arguments: "-f manifest-dev.yml 10x-nad-st-dev" diff --git a/README.md b/README.md index 3650839..cb8b3c2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ run tests and scripts locally. Clone the repostiory: ```bash -git clone https://github.com/GSA-TTS/10x-nad-ch/ +git clone https://github.com/GSA-TTS/10x-nad-st/ ``` In order to set up a local development environment, you will need to download diff --git a/manifest-dev.yml b/manifest-dev.yml index c11950d..36e7cf7 100644 --- a/manifest-dev.yml +++ b/manifest-dev.yml @@ -1,6 +1,6 @@ --- applications: - - name: 10x-nad-ch-dev + - name: 10x-nad-st-dev buildpacks: - python_buildpack services: @@ -19,4 +19,4 @@ applications: LOCAL_ALLOWED_DOMAIN: test.org LANDING_ZONE: /data/landing_zone routes: - - route: 10x-nad-ch-dev.app.cloud.gov + - route: 10x-nad-st-dev.app.cloud.gov From 28d34de9bb0e9fa37eaf88e5f14a550b92e7be70 Mon Sep 17 00:00:00 2001 From: aanand-gsa Date: Thu, 5 Dec 2024 23:51:04 -0500 Subject: [PATCH 6/7] changes for updating the python version for cloud.gov deployment --- .github/workflows/deploy-dev.yml | 2 +- .python-version | 2 +- documentation/phase-3-running-locally.md | 2 +- requirements.txt | 10 +++++----- runtime.txt | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index 01a3f73..9b27dfb 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.11.9 + python-version: 3.11.10 - name: Install poetry shell: bash diff --git a/.python-version b/.python-version index 2419ad5..3e72aa6 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.11.9 +3.11.10 diff --git a/documentation/phase-3-running-locally.md b/documentation/phase-3-running-locally.md index 34ed60e..8522123 100644 --- a/documentation/phase-3-running-locally.md +++ b/documentation/phase-3-running-locally.md @@ -2,7 +2,7 @@ Prerequisites: -- Python 3.11.9 +- Python 3.11.10 - Node.js 18.17.1 - Docker - `CLOUDGOV_CLIENT_ID` and `CLOUDGOV_CLIENT_SECRET` keys in `.env` populated diff --git a/requirements.txt b/requirements.txt index cbec46f..98fd276 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,8 +7,8 @@ attrs==24.2.0 ; python_version >= "3.11" and python_version < "4.0" authlib==1.3.2 ; python_version >= "3.11" and python_version < "4.0" billiard==4.2.1 ; python_version >= "3.11" and python_version < "4.0" blinker==1.9.0 ; python_version >= "3.11" and python_version < "4.0" -boto3==1.35.59 ; python_version >= "3.11" and python_version < "4.0" -botocore==1.35.59 ; python_version >= "3.11" and python_version < "4.0" +boto3==1.35.68 ; python_version >= "3.11" and python_version < "4.0" +botocore==1.35.68 ; python_version >= "3.11" and python_version < "4.0" celery==5.4.0 ; python_version >= "3.11" and python_version < "4.0" certifi==2024.8.30 ; python_version >= "3.11" and python_version < "4.0" cffi==1.17.1 ; python_version >= "3.11" and python_version < "4.0" @@ -32,7 +32,7 @@ jmespath==1.0.1 ; python_version >= "3.11" and python_version < "4.0" kombu==5.4.2 ; python_version >= "3.11" and python_version < "4.0" mako==1.3.6 ; python_version >= "3.11" and python_version < "4.0" markupsafe==3.0.2 ; python_version >= "3.11" and python_version < "4.0" -minio==7.2.10 ; python_version >= "3.11" and python_version < "4.0" +minio==7.2.11 ; python_version >= "3.11" and python_version < "4.0" numpy==1.26.4 ; python_version >= "3.11" and python_version < "4.0" packaging==24.2 ; python_version >= "3.11" and python_version < "4.0" pandas==2.2.3 ; python_version >= "3.11" and python_version < "4.0" @@ -41,7 +41,7 @@ psycopg2-binary==2.9.10 ; python_version >= "3.11" and python_version < "4.0" pyarrow==15.0.2 ; python_version >= "3.11" and python_version < "4.0" pycparser==2.22 ; python_version >= "3.11" and python_version < "4.0" pycryptodome==3.21.0 ; python_version >= "3.11" and python_version < "4.0" -pyjwt==2.9.0 ; python_version >= "3.11" and python_version < "4.0" +pyjwt==2.10.0 ; python_version >= "3.11" and python_version < "4.0" pyproj==3.7.0 ; python_version >= "3.11" and python_version < "4.0" pyshp==2.3.1 ; python_version >= "3.11" and python_version < "4.0" python-dateutil==2.9.0.post0 ; python_version >= "3.11" and python_version < "4.0" @@ -50,7 +50,7 @@ pytz==2024.2 ; python_version >= "3.11" and python_version < "4.0" pyyaml==6.0.2 ; python_version >= "3.11" and python_version < "4.0" redis==5.2.0 ; python_version >= "3.11" and python_version < "4.0" requests==2.32.3 ; python_version >= "3.11" and python_version < "4.0" -s3transfer==0.10.3 ; python_version >= "3.11" and python_version < "4.0" +s3transfer==0.10.4 ; python_version >= "3.11" and python_version < "4.0" shapely==2.0.6 ; python_version >= "3.11" and python_version < "4.0" six==1.16.0 ; python_version >= "3.11" and python_version < "4.0" sqlalchemy==2.0.36 ; python_version >= "3.11" and python_version < "4.0" diff --git a/runtime.txt b/runtime.txt index cd0aac5..250c2f0 100644 --- a/runtime.txt +++ b/runtime.txt @@ -1 +1 @@ -python-3.11.9 \ No newline at end of file +python-3.11.10 \ No newline at end of file From 72de7295ff915db47c60dfa564584e445414646f Mon Sep 17 00:00:00 2001 From: aanand-gsa Date: Thu, 5 Dec 2024 23:51:18 -0500 Subject: [PATCH 7/7] updated the name positioning --- nad_ch/controllers/web/templates/_layouts/sidebar.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nad_ch/controllers/web/templates/_layouts/sidebar.html b/nad_ch/controllers/web/templates/_layouts/sidebar.html index b860e00..c38dfd7 100644 --- a/nad_ch/controllers/web/templates/_layouts/sidebar.html +++ b/nad_ch/controllers/web/templates/_layouts/sidebar.html @@ -4,8 +4,8 @@