Core delivery platform Node.js Backend Template.
- forms-manager
Please install the Node.js version in .nvmrc using Node Version Manager nvm via:
cd forms-manager
nvm use-
Install Docker
-
Bring up runtime dependencies
docker compose up- Create a
.envfile with the following mandatory environment variables populated at root level:
MONGO_URI=""
MONGO_DATABASE=""
OIDC_JWKS_URI=""
OIDC_VERIFY_AUD=""
OIDC_VERIFY_ISS=""
ROLE_EDITOR_GROUP_ID=""
HTTP_PROXY=
HTTPS_PROXY=
NO_PROXY=
SNS_TOPIC_ARN=
SNS_ENDPOINT=
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
For proxy options, see https://www.npmjs.com/package/proxy-from-env which is used by https://github.com/TooTallNate/proxy-agents/tree/main/packages/proxy-agent. It's currently supports Hapi Wreck only, e.g. in the JWKS lookup.
To run the application in development mode run:
npm run devTo mimic the application running in production mode locally run:
npm startAll available Npm scripts can be seen in package.json To view them in your command line run:
npm runThis project uses migrate-mongo to manage database migrations.
In production, migrations run automatically when the Docker container starts via the scripts/run-migrations-and-start.sh shell script. This script:
- Runs all pending migrations (
migrate-mongo up) - Starts the application server
- Logs migration progress to the container output
No manual intervention is required - migrations execute automatically on container startup.
For local development, you have two options:
Migrations run automatically when using Docker:
docker compose up --build forms-managerThis mimics the production environment and runs migrations via the same shell script.
To work with migrations manually, you can install migrate-mongo globally:
npm install -g migrate-mongoAvailable migration commands:
# Check migration status
npm run migrate:status
# Run all pending migrations
npm run migrate:up
# Rollback the last migration
npm run migrate:down
# Create a new migration
npx migrate-mongo create <migration-name> -f migrate-mongo-config.jsImportant: When running migrations manually, ensure your .env file contains the correct MONGO_URI and MONGO_DATABASE values that match your local MongoDB instance.
| Endpoint | Description |
|---|---|
GET: /health |
Health |
GET: /v1/entities |
Entities |
GET: /v1/entities/<entityId> |
Entity by ID |
PATCH: /forms/<id> |
Update Form by ID |
A Postman collection and environment are available for making calls to the Teams and Repositories API. Simply import the collection and environment into Postman.
Build:
docker build --target development --no-cache --tag forms-manager:development .Run:
docker run -e GITHUB_API_TOKEN -p 3008:3008 forms-manager:developmentBuild:
docker build --no-cache --tag forms-manager .Run:
docker run -e GITHUB_API_TOKEN -p 3001:3001 forms-managerIf you want to run the API with the integration test environment (which includes mock OIDC and test MongoDB):
- Set up the integration test environment:
npm run test:integration:setup # Start OIDC mock server and MongoDB
npm run test:integration:start # Start the API service
npm run test:integration:wait # Wait for the app to be ready-
The API will be available at http://localhost:3001
-
When finished, clean up the environment:
npm run test:integration:stopTo run the integration tests manually in Postman:
- Set up the integration test environment as described above
- Import the test collection and environment into Postman:
- Collection:
test/integration/postman/forms-manager-ci-mock.postman_collection.json - Environment:
test/integration/postman/forms-manager-ci-mock.postman_environment.json
- Ensure the environment variable
rootis set tohttp://localhost:3001 - Run the collection or individual requests through the Postman GUI
- Clean up the environment when done with
npm run test:integration:stop
To extend the integration test suite with new test cases:
- Open the collection in Postman:
- Import the collection if you haven't already:
test/integration/postman/forms-manager-ci-mock.postman_collection.json - Import the environment:
test/integration/postman/forms-manager-ci-mock.postman_environment.json
- Create a new request:
- Right-click on the appropriate folder in the collection and select "Add Request"
- Name it clearly, describing what it tests (e.g., "Create Form - Valid Input")
- Set the HTTP method (GET, POST, PUT, etc.) and URL using environment variables:
{{root}}/forms
- Configure authentication:
- In the Authorization tab, select "Bearer Token"
- Use
{{accessToken}}as the token value (the collection's pre-request scripts will handle token acquisition)
- Add request body or parameters if needed:
- For POST/PUT requests, add your JSON body in the Body tab
- Use the "raw" format and select JSON
- Add pre-request scripts if required:
- Use the Pre-request Script tab for setup logic
- Create test data or variables needed for this specific test
- Add test assertions:
-
In the Tests tab, write assertions to verify the response
-
Example:
pm.test('Status code is 200', function () { pm.response.to.have.status(200) }) pm.test('Response has expected data', function () { const responseData = pm.response.json() pm.expect(responseData).to.have.property('id') pm.expect(responseData.name).to.eql('Expected Name') })
- Test locally:
- Start the integration environment with
npm run test:integration:setup && npm run test:integration:start && npm run test:integration:wait - Run your new request and verify it passes
- Make adjustments as needed
- Export and commit:
- Export the updated collection: File → Export → Collection
- Save it to
test/integration/postman/forms-manager-ci-mock.postman_collection.json, overwriting the existing file - Commit the updated collection file to the repository
- Update documentation if needed:
If you're adding endpoints for new features, update the API endpoints section in this README
The CI pipeline will automatically run your new test along with the existing ones on PRs and merges to main.
THIS INFORMATION IS LICENSED UNDER THE CONDITIONS OF THE OPEN GOVERNMENT LICENCE found at:
http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3
The following attribution statement MUST be cited in your products and applications when using this information.
Contains public sector information licensed under the Open Government license v3
The Open Government Licence (OGL) was developed by the Controller of Her Majesty's Stationery Office (HMSO) to enable information providers in the public sector to license the use and re-use of their information under a common open licence.
It is designed to encourage use and re-use of information freely and flexibly, with only a few conditions.