Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.32 KB

development.md

File metadata and controls

44 lines (29 loc) · 1.32 KB

Development Guide

Prerequisites

The following development tools must be available in your local environment:

  • Node.js / npm - Node.js dependencies management tool
    • This project uses Node.js 16.x
  • Python
    • This project uses Python 3.9.x
  • Poetry - Python dependencies management tool
  • Task - task runner tool

Building the Project

You can build the project by running this command from the root folder of the project:

task build

Running Checks

Checks and tests are set up to ensure the project content is functional and compliant with the established standards.

You can run the checks by running this command from the root folder of the project:

task check

Automatic Corrections

Tools are provided to automatically bring the project into compliance with some of the required checks.

You can make these automatic fixes by running this command from the root folder of the project:

task fix