Changes between Version 3 and Version 4 of AnnotationManagerN4J


Ignore:
Timestamp:
Nov 14, 2012, 2:46:35 PM (12 years ago)
Author:
casties
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnnotationManagerN4J

    v3 v4  
    17171. `hg clone https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J`
    18182. `cd AnnotationManagerN4J`
    19 3. `mvn package` (this produces the web-app as a directory `target/AnnotationManager` or war file `target/AnnotationManager.war`)
     193. `mvn package` (this produces the webapp as a directory `target/AnnotationManager` or war file `target/AnnotationManager.war`)
    2020
    2121
     
    28283. `mvn install`
    2929
     30
     31== Configuration ==
     32
     33The server is configured through the file `serverconfig.property` in the `WEB-INF` folder in the webapp directory.
     34
     35The file is in Java property file syntax and might look like this:
     36{{{
     37# directory where Neo4J keeps its files (otherwise the files will be put in the webapp directory)
     38annotationmanager.graphdb.path = /usr/local/neo4j/dbs/AnnotationManager
     39# LDAP server URL for getting full names for IDs (otherwise no full names)
     40annotationmanager.ldapserver.url = ldap://ldap.mpiwg-berlin.mpg.de/dc=mpiwg-berlin,dc=mpg,dc=de
     41# user name and password for the admin frontend for Persons and Groups
     42annotationmanager.admin.user = superuser
     43annotationmanager.admin.password = superpassword
     44}}}
     45
     46The server also has a list of API client keys that are used to authenticate Tokens from the token servers. On the annotation server the keys are in the file `consumerkeys.property` in the `WEB-INF` folder in the webapp directory.
     47
     48The file is in Java property file syntax and might look like this:
     49{{{
     50# format: consumerKey = consumerSecret
     51#         consumerKey.label = Label
     52test1 = abcdef
     53test1.label = TEST
     54}}}