Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 445 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 445 Bytes

case-book

to install standalone version with empty database

$ git clone https://github.com/UCSC-MedBook/case-book.git
$ cd case-book/webapp
$ meteor

Installing Meteor https://www.meteor.com/install

By default meteor starts up a mongo server, to look at mongo data, run the following: $ meteor mongo

show collections

You also need to manually create the full text index

db.cases.createIndex( { fullNarrative: "text" } );