This repository has been archived by the owner on Apr 9, 2020. It is now read-only.
forked from ProjectMirador/mirador
-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Rashmi Singhal edited this page Oct 21, 2015
·
4 revisions
Mirador uses node.js and a build system to assemble, test, and manage the development resources. If you have never used these tools before, you may need to install them.
- Install Node, if you haven't already (available at the link above)
- Install the Grunt command line runner (if you haven't already); on the command line, run
npm install -g grunt-cli
- Clone the mirador repository (if you haven't already done so above);
git clone https://github.com/IIIF/mirador.git
- On the command line, go into the mirador folder
- Install all dependencies with
npm install
andbower install
. Rungrunt
A good practice is to clone the project into a directory that is being served by a running http server such as apache or nginx. However, if you would like to test and develop without using an external server, you may run grunt server
.
Either visit the root folder of the project on your local server, or, if you are using grunt server
, see the example working at localhost:8000
.