Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes for the project name cleanup activity #127

Merged
merged 7 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.11.9
3.11.10
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 10x National Address Database Collaboration Hub (NAD-CH)
# 10x National Address Database Submission Tool (NAD-ST)

## Local Development

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion data/landing_zone/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 10x National Address Database Collaboration Hub (NAD-CH)
# 10x National Address Database Submission Tool (NAD-ST)

## Data Landing Zone

Expand Down
2 changes: 1 addition & 1 deletion documentation/adr/0002-use-python-as-primary-language.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 Submission Tool (NAD-ST) is starting up, and we need to determine a programming language to use.

## Decision

Expand Down
4 changes: 2 additions & 2 deletions documentation/architecture/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# NAD Collaboration Hub Architecture
# National Address Database Submission Tool Architecture

### Entry Points

Users can work with the NAD Collaboration 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.
Expand Down
2 changes: 1 addition & 1 deletion documentation/artifacts/README.md
Original file line number Diff line number Diff line change
@@ -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 Submission Tool.
2 changes: 1 addition & 1 deletion documentation/phase-3-running-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions documentation/phase-3-technical-recap.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# 10x NAD Collaboration Hub Technical Recap
# 10x NAD Submission Tool 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 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 NAD Collaboration 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
Expand All @@ -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 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.
Expand Down
2 changes: 1 addition & 1 deletion documentation/terminology.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# NAD Collaboration Hub Terminology
# National Address Database Submission Tool Terminology

## Acronyms

Expand Down
4 changes: 2 additions & 2 deletions manifest-dev.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
applications:
- name: 10x-nad-ch-dev
- name: 10x-nad-st-dev
buildpacks:
- python_buildpack
services:
Expand All @@ -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
2 changes: 1 addition & 1 deletion nad_ch/controllers/web/templates/401.html
Original file line number Diff line number Diff line change
@@ -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 Submission Tool") }}
<h3>401 Unauthorized</h3>
<p>Your request lacks valid authentication credentials.</p>
{% endblock %}
2 changes: 1 addition & 1 deletion nad_ch/controllers/web/templates/404.html
Original file line number Diff line number Diff line change
@@ -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 Submission Tool") }}
<h3>404 Not Found</h3>
<p>The server cannot find the requested resource.</p>
{% endblock %}
2 changes: 1 addition & 1 deletion nad_ch/controllers/web/templates/_layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
{% include "_layouts/head.html" with context %}
<title>{% block title %}{% endblock %} - NAD Collaboration Hub</title>
<title>{% block title %}{% endblock %} - National Address Database Submission Tool</title>
</head>
<body>
<div class="grid-row minh-viewport">
Expand Down
2 changes: 1 addition & 1 deletion nad_ch/controllers/web/templates/_layouts/head.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% block head %}
<meta charset="utf-8" />
<meta name="description" content="10x NAD Collaboration Hub" />
<meta name="description" content="10x National Address Database Submission Tool" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
Expand Down
2 changes: 1 addition & 1 deletion nad_ch/controllers/web/templates/_layouts/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="usa-sidenav__logo">
<a href="{{ url_for('index') }}">
<span class="logo-top">National Address Database</span>
<span class="logo-bottom">Collaboration Hub</span>
<span class="logo-bottom">Submission Tool</span>
</a>
</div>
{% if current_user.is_authenticated %}
Expand Down
4 changes: 2 additions & 2 deletions nad_ch/controllers/web/templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

<div class="grid-col-8">
<p class="about-lead">
The 10x team is piloting the National Address Database Collaboration Hub
(NAD-CH) with the Department of Transportation (DOT) and the U.S. Virgin
The 10x team is piloting the National Address Database Submission Tool
(NAD-ST) with the Department of Transportation (DOT) and the U.S. Virgin
Island's Geospatial Information Services Division.
</p>
<p class="about-body padding-bottom-2">
Expand Down
2 changes: 1 addition & 1 deletion nad_ch/controllers/web/templates/index.html
Original file line number Diff line number Diff line change
@@ -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 Submission Tool") }} {% if current_user.is_authenticated %}
<p>Hi, {{ current_user.email }}!</p>
<p>Thanks for logging in with {{ current_user.login_provider }}.</p>
{% else %}
Expand Down
Loading
Loading