-
Notifications
You must be signed in to change notification settings - Fork 255
Developer Tooling and Workflow
aeschylus edited this page Dec 2, 2014
·
14 revisions
To begin working on the project, fork it on github or clone locally:
git clone https://github.com/IIIF/m2.git
Install all dependencies with npm install
and bower install
. Run grunt
.
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 serve
.
Either visit the root folder of the project at localhost, or, if you are using grunt serve
, see the example at localhost:3001
Create a branch for your work:
e.g.: git checkout -b my-feature-branch
or git checkout -b my-bug-fix