Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 915 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 915 Bytes

OSCAL-Reference

This repository houses the infrastructure for the OSCAL model generation pipeline.

Usage

  1. Clone the repository and initialize submodules:
git clone
cd OSCAL-Reference
git submodule update --init
  1. Generate the site
make site

To see other common operations, refer to the Makefile or simply run make help.

Local development

The target make serve runs builds the site dependencies and runs hugo serve.

Speeding up the build

Some tasks such as generating the model documentation can be done in parallel for each target release.

Passing the -j <number> flag will allow for parallel execution of makefile targets and can significantly speed up build times. Pass in an appropriate value (usually the core count of the current machine), e.x.:

make site -j 8