This project compiles static web pages which provide the examples and documentation for using OpenSeadragon.
http://openseadragon.github.io/
All command-line operations are scripted using Grunt which is based on Node.js. To get set up:
npm install -g grunt-cli
npm install
You're set... continue reading for build and test instructions.
To build, just run (on the command line, in the site-build folder):
grunt build
The built website will appear in site-build/build.
If you want to try the site out in your browser, you can run:
grunt connect watch
This will run a server at http://localhost:9000/.
grunt doc
... will build the docs into the local build folder.
To publish, run:
grunt publish
This cleans out the openseadragon.github.com folder (which you've cloned from the openseadragon.github.com repository, and resides next to your site-build folder) and builds and copies the web pages and docs into it.
Note that while the OpenSeadragon website resides at http://openseadragon.github.io, for historical reasons the repository is named openseadragon.github.com.
If you want to see the website with the appropriate example images, clone the example-images repository into site-build/build and check out its gh-pages branch.