Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Downloads

...

  • Go to the directory of LinkedDataIndexer
  • Copy the example file /src/main/scala/edu/cornell/indexbuilder/configurations/ExampleConfig.scala to your customized scala file (e.g. MyInstitutionTest.scala)
  • Modify the copied file from:

    No Format
    
    object ExampleConfig {
      val siteName = "Weill Cornell Medical College"
      val siteUrl = "http://vivo.med.cornell.edu"    
      val siteVivoVersion = VitroVersion.r1dot2
    
      val solrUrl = "http://exampleSolrServer.example.edu:8080/solr"
      val classUris = List( """http://vivoweb.org/ontology/core#Postdoc""" )
    }
    

to your customized institutional configurations:

No Format

object MyInstitutionTest {
  val siteName = "My Institution"
  val siteUrl = "http://vivo.myinstitution.edu"    
  val siteVivoVersion = VitroVersion.r1dot2

  val solrUrl = "http://localhost:8983/solr"
  val classUris = List( """http://vivoweb.org/ontology/core#Postdoc""" )
}

...