Note: montagejs.org is no longer online. The MontageJS docs can now be found here: http://docs.montagestudio.com/montagejs/
This is the repo for the montagejs.org website.
If you find any bugs or want to contribute, feel free to create an issue or send a pull request.
The site uses Jekyll for templates and includes. You can find more infos on jekyllrb.com.
You need Ruby version > 2.0.0.
First you need Ruby and RubyGems, see details. Once installed run:
gem install jekyll
gem install redcarpet
Note: you may sudo chmod -R o+rw /Library/Ruby/Gems/2.3.0
Then cd
into your montagejs.org directory and run:
jekyll serve --port 8080
Now you should see the site at http://localhost:8080
.
After making changes you can close the server with Ctrl c
and then rebuild the site with jekyll serve
again. Then if you refresh the browser, you should see the changes.
If you don't wanna manually rebuild after every change, you can serve with the "watch" command:
jekyll serve --watch --port 8080
Then the site gets automatically rebuilt once you save a file. Note: Because some directories like the /apps are quite big, it is advised to exclude them temporarily while testing locally. It speeds up rebuilding a lot and your CPU thanks you for that. To exclude directories, open the /_config.yml
file and uncomment this line exclude: [apps, built-apps, node_modules, packages, ui]
(it might look a bit different by now). Just make sure you don't commit that change to _config.yml.
First install the build dependencies:
$ cd _build
$ npm install
$ cd ..
The apps, API docs and home example can all be built individually:
$ _build/build.js apps
$ _build/build.js api
$ _build/build.js home
or several at the same time:
$ _build/build.js home apps
or you can shortcut and build all the things:
$ _build/build.js all
To build just a subset of the API docs, or build docs for a specific version, use the _build/jsdoc/jsdoc.js
command. It takes arguments for which project and version docs you want to build.
# Locally checked out Montage
$ _build/jsdoc/jsdoc.js montage npm-link $PWD/api
# Version of Montage
$ _build/jsdoc/jsdoc.js montage v0.13.9 $PWD/api
# Version of Digit
$ _build/jsdoc/jsdoc.js digit v0.4.0 $PWD/api