This is a prototype for a future Cloud.gov user interface.
Install node 20.x on your machine. Check .nvmrc
for the app's current version.
If your environment uses ZScaler, you must make Node aware of your ZScaler certificate so you can install packages via npm. If ZScaler is not active in your environment, you may skip this part.
Output the certificate in pem format. Place the pem in a stable location you can refer to repeatedly.
security find-certificate -a -c zscaler -p > [path_to_cert]/zscaler_root_ca.pem
Edit a file that will execute when you open a new terminal session. For example, ~./zshrc
or ~./bashrc
or similar. Load the pem as a variable that Node will read:
export NODE_EXTRA_CA_CERTS=[path_to_cert]/zscaler_root_ca.pem
Open a new shell, clone this repository, and install the dependencies:
npm install
Next, install the Cloud Foundry command line tool. On mac, you can run:
brew install cloudfoundry/tap/cf-cli@8
Ask a member of the Cloud.gov team to grant your user access to the cloud development environment. You may choose instead to use your regular (production) cloud.gov account, but be aware that any actions you take in the app, such as deleting spaces or apps, will affect your cloud.gov applications and services.
Once you have a development account, log into the CF CLI. Follow the prompts to authenticate:
# log into development
cf login -a api.dev.us-gov-west-1.aws-us-gov.cloud.gov --sso
# log into production (not recommended)
cf login -a api.fr.cloud.gov --sso
You do not need to target an organization or space.
Copy the example .env.example.local
file. Do not check .env.local
into source control.
cp .env.example.local .env.local
You do not need to change anything about this file for local development unless if you logged into your production cloud.gov account during the previous step.
# change this line if you are using production
CF_API_URL=https://api.fr.cloud.gov/v3
Note: the variable CF_API_TOKEN
is not yet populated. That's okay! Continue to the next step to set it.
Start the app with the dev-cf
command:
npm run dev-cf
This will fetch your local cloud foundry token from the CF CLI tool and use it to start the app, giving your user permission to access and manipulate cloud foundry resources through the UI.
Visit localhost:3000
to check it out!
Due to developing locally against a "real" environment, we have to play by the rules of the CF CLI. This means that our token expires every 15 minutes or so, and we also need to reauthenticate every 24 hours.
If you start getting 401 errors, restart your application to get a new token. If you haven't logged into the CF CLI on a given day, make sure to reauthenticate following Step 2 above.
The above steps are enough to get most people up and running, but our app has more bells and whistles! Consider yourself good to go unless if you plan to do any of the following:
- running the test suite
- working on the logging in flow
- developing something related to user access information
- in need of a database
This application relies on an s3 bucket to pull information about a user's last access date and their account status (active vs inactive). This bucket is populated by the uaa-bot and is only available in the development environment. If access is not hooked up, you will simply see "no user information" in the UI.
Create a new service key for your targeted org and environment. Name the key something descriptive enough that you can identify it again. For example, cg-ui-storage-key
.
cf create-service-key cg-ui-storage [name-of-your-key]
Pull down the key (this contains sensitive information):
cf service-key cg-ui-storage [name-of-your-key]
You are interested in these parts of the key:
{
"access_key_id": "...",
"bucket": "...",
"region": "...",
"secret_access_key": "..."
}
Copy the values into your .env.local
file for the variables S3_ACCESS_KEY_ID
, S3_ACCESS_KEY_SECRET
, S3_BUCKET
, AND S3_REGION
.
You can keep the key around between development sessions, but you may wish to rotate it or delete it when you are no longer using it:
cf delete-service-key cg-ui-storage [name-of-your-key]
Follow the steps in the cgui-db-docker README to set up a postgres db in docker. This database is only a proof-of-concept for our application at the moment, but is needed if you will be running the full test suite.
Start the container (note, the command may be docker-compose
on older installs):
cd cgui-db-docker
docker compose build
docker compose up
Our local version of the app uses a CF token to access the CF API. However, the deployed version of the application authenticates with the CF User Accounts and Authentication (UAA) service. We have a local version of UAA available if you wish to test or develop around the user experience of logging in.
See the uaa-docker README for set up instructions.
Start the container:
cd uaa-docker
# follow instructions to build before running up
docker compose up
In order to try out UAA, you will need to comment out your CF_API_TOKEN and then use credentials found in the uaa-docker/uaa.yml
file.
To run the entire unit test suite, you will need to start the docker database container:
cd cgui-db-docker
docker compose up
Run the suite:
npm test
To run test files matching certain text (one example):
npm test -- serverside
We have one test that runs against the s3 bucket to test that updates to the AWS libraries have not broken the connection. This test runs locally and is not part of the CI pipeline. To run this test, set up a local-only test environment file. This file should not be tracked in version control:
cp .env.test.example.local .env.test.local
Then, if you have not already, set up a s3 service key. Copy the values into .env.test.local
. To run the test:
npm run test:integration
You can optionally set up the repository with a pre-commit hook to scan files you have just staged for linting / prettifying:
npm run setup-precommit
If you prefer, you may run these utilities manually instead:
npm run lint
npm run format
# to alter files automatically
npm run format:fix
You may also wish to test that the next application is building before you commit and push:
npm run build
Eslint configurations are found in .eslintrc.json. Prettier configurations are found in .prettierrc.json.
Cloud.gov requires any commits to this repo to be signed with a GPG key. You will need to set up commit signing before the first time you contribute 🔐.
Cloud.gov requires that contributors have the caulking tool installed and running on their machines. Follow the instructions to install caulking and confirm that make audit
passes all checks.
This application is deployed to the cloud.gov development environment automatically when changes are merged into the main branch. Deployment is managed via Concourse CI (see the ci
directory).
See the developer documentation for instructions to manually deploy the application.
Our team keeps custom CSS/SASS to a minimum and takes a utilities-first approach.
Please see our developer guidelines about this approach, how USWDS is integrated into our application, and steps to take when upgrading.
We prioritize named imports, TypeScript, and Pascal Case component names throughout our application. Read more about our file conventions.
Next.js has few opinions about how to structure applications. We have chosen to use an MVC (Model View Controller)-like pattern.
See our architecture documentation for information about each of the layers and how we are using them.
We keep Architectural Decision Records (ADRs) to explain decisions we have made and alternatives we considered. You may find them in the adrs directory.
When we come across concepts that are initially confusing or required significant time to understand, we have created explainers to capture our newly acquired knowledge.
The Node version should be updated in the following places:
- .nvmrc which controls the version for cloud builds
- Github workflow containers
NODE_VERSION
which controls the version in Github action containers - package.json under
engines
to specify which version(s) our app works with - Concourse docker-compose and pipeline
See the USWDS documentation for more information about how to update USWDS and its assets.