Node application to help managing Maturity Models like the ones created by BSIMM and OpenSAMM
Current QA server: http://138.68.145.52
git clone [email protected]:DinisCruz/Maturity-Models.git
cd Maturity-Models
git submodule init
git submodule update
npm install --quiet
cd code/ui
npm install --quiet
npm install --quiet -g bower
npm install --quiet -g gulp
bower --allow-root install
gulp
cd ..
npm run dev
note npm start
will also work, but for now use npm run dev
npm test
When doing a git pull origin master
to get the latest version you might need to also do a git submodule update
or git submodule sync
to keep the submodules updated.
You can check if all is good by doing an git status
on the root folder of this repo (which should return 'no changes')
Available at https://hub.docker.com/r/diniscruz/maturity-models/
run with (port 80): docker run -it -p 80:3000 diniscruz/maturity-models
or with (as demon on port 3333): docker run -it -d -p 3333:3000 diniscruz/maturity-models
The first version of this tool is designed to work with BSIMM mappings, but there is work under way to also add OpenSAMM mappings
The data is stored in the repo https://github.com/DinisCruz/BSIMM-Graphs-Data which should be forked to hold private/custom data
- BSIMM Questions for Teams v0.7 (with all consolidated team questions and maybe column)
- Updated version of BSIMM Questions for Teams (now will all activities mapped)
- First pass at BSIMM questions for teams
-
"D3.js - Radar Chart or Spider Chart - Adjusted from radar-chart-d3" - http://bl.ocks.org/nbremer/6506614
-
"Making the D3 Radar Chart look a bit better" http://www.visualcinnamon.com/2013/09/making-d3-radar-chart-look-bit-better.html
-
"Chart.js - Radar chart introduction" http://www.chartjs.org/docs/#radar-chart-introduction
-
other:
-
http://blog.stapps.io/using-d3-both-on-the-front-end-and-server/
-
https://graves.cl/radar-chart-d3/ "Example of radar chart"
-
http://bl.ocks.org/chrisrzhou/2421ac6541b68c1680f8 : "D3 Radar Chart - AngularJS application showcasing an interactive D3 radar chart (with facetting)."
-
https://gist.github.com/chrisrzhou/2421ac6541b68c1680f8 : "D3 Radar Chart"