This site is built with Jekyll. Documentation content is written in Markdown format located in './docs'
The site is automatically deployed when commits are merged/pushed in master
, hosted at https://codefresh.io/docs/
- Install docker-compose
- Run
docker-compose up
- Open
http://localhost:3131
in your browser, and voila!
To compile scss files into css run the command npm run css
or in the live mode npm run watch-css
.
To compile js files into a bundle run the command npm run js
or in the live mode npm run watch-js
.
Node version 9.11.2
- Install Ruby,
bundler
,jekyll
and other Ruby dependencies withbundle install
. - Run
npm install
to install Node.js dependencies. - Run
npm run css
(or a specific npm script) to rebuild distributed CSS and JavaScript files, as well as our docs assets. - From the root directory, run
npm run docs-serve-dev
in the command line. - Open
http://localhost:19002
in your browser, and voila.