This repository is no longer active and has been moved to: http://github.com/nlpreviz/emr-vis-web
emr-vis-web provides the frontend view for emr-nlp-server.
To get started, install the pre-requisites and then clone emr-vis-web as described below:
-
You need git to clone the emr-vis-web repository. You can get it from http://git-scm.com/.
-
You must have node.js and its package manager (npm) installed. You can download them from http://nodejs.org/ or get them using your favourite package manager. For example, if you are on a Mac and have homebrew installed, run
$ brew install node
. -
We use the Apache Tomcat server to deploy the app. On a Mac with homebrew you may use
$ brew install tomcat
to get it. -
We have separate repository for our backend service. Visit emr-nlp-server for more.
-
Navigate to the home directory of your tomcat server. You can use
$ catalina version
and find out whatCATALINA_HOME
is set to. -
cd
to the webapps/ directory. If you are using the default tomcat setup, your present working directory would be something like /usr/local/Cellar/tomcat/7.0.54/libexec/webapps/. -
Clone the emr-vis-web repository into the webapps direcory using git:
cd webapps git clone https://github.com/trivedigaurav/emr-vis-web.git cd emr-vis-web
-
Make sure you have node.js installed.
-
We have preconfigured
npm
to automatically runbower
andgrunt
. So all you need to do is:npm install
This would run the following steps:
- Get the tools we depend upon via
npm
- the node package manager. - Download the angular code and javascript dependencies via
bower
- a client-side code package manager. - And set the config variables using
grunt
- a javascript task runner.
- Get the tools we depend upon via
-
(Skip this step to leave default settings as it is.) In case you need to change the backend service's path, edit the
config.backend
variable in package.json or use the following commands:npm config set emr-vis-web:backend <relative/path/to/backend/service> npm start
Valid examples of this path include "http://localhost:9090/backEndService", "/backEndService" etc.
Editing package.json would be a permanent solution while using the
npm config
lets you include the config settings for the current terminal session.
If you haven't built the backend project as yet, please do so now. Refer to the readme on emr-nlp-server for more information. Remember to go through step 3 to set the correct path to the backend service if you plan to modify the defaults.
Now browse to the app at http://localhost:8080/emr-vis-web/app/index.html
or <your-localhost-root>/emr-vis-web/app
.
The wordtree is adapted from the library by silverasm, available at https://github.com/silverasm/wordtree. Our project depends on the javascript libraries listed in bower.json.
This project is released under the GPL 3 license. Take a look at the LICENSE file in the source for more information.