/DevSecOps-capability-model

A capability model for those on the DevSecOps journey

Primary LanguageHTMLMIT LicenseMIT

DevSecOps Capability Model

A simplified capability model for those on DevSecOps transformation journey. Fork and use this to map where you are as an organisation are use it to drive where you need to be.

screnshot

All the raw data is in data/tableData.json

Deployed using github-pages to

Fork this radar and modify data/tableData.json.

Inspired by

Influenced and inspired by

Thanks to Timo Pagel for the initial project.

Local Development

# to server on localhost:4000 and continuously transpile output
docker run -it --rm \
  -v ${PWD}:/srv/jekyll \
  -p 4000:4000 \
  jekyll/jekyll \
  jekyll serve --watch

# OPTIONAL use the awesome `reload` which auto-refreshes your browser on change using websockets
# `npm install -g reload`
(cd _site && reload -e "html|js|css|json")

Build and deploy

This site is a Jekyll static site and will be auto deployed via Github pages to https://devsecops.jujhar.com upon commit to master.

If you're not publishing to Github pages use this command to one time build assets into _site and then publish to a S3 static bucket or old school server.

# will build into the _site directory
docker run --rm -v \
  ${PWD}:/srv/jekyll \
  jekyll/jekyll \
  jekyll build