The html samples are written in jade template language.
The css is build up on stylus.
kesign source: master kesign documentation: gh-pages
In the near future we will change to push to extra branches for new versions so the master and gh-pages branches are the current/stable released state.
-
You will need to install node.js on your computer - download it from http://nodejs.org/
-
next we need to install grunt
npm install -g grunt-cli
-
clone the repository
git clone [email protected]:KABA-CCEAC/kesign.git
-
open the project folder and install the node dependencies
cd kesign npm install
To generate the sources you could:
grunt build
To watch your changes in a browser you could start a local webserver:
grunt server
// -> head your browser to http://localhost:8000/samples/default.html or any other page you want to test
To generate the files on change (save)
grunt watch
Befor you crate a new version be sure to set the new version numbers inside the Gruntfile.js.
To package the sources for release:
grunt release
Now you could copy the files from /dist/release/ to the current documentation branch and if needed add documentation content there for the new functionality.