-
Notifications
You must be signed in to change notification settings - Fork 5
Setup
The only requirements are a working version of node and python 3.7. Using anaconda or miniconda for a python environment is highly recommended. To make it easier to install, update and remove node, especially if you plan to maybe use it in other projects we suggest using the node version manager https://github.com/nvm-sh/nvm.
First install the python environment.
With Conda:
conda env createthen activate the environment with
conda activate humanOR install from requirements.txt with pip or whatever you fancy.
Write your custom annotation protocol into protocol.json. Refer to the wiki for documentation on how to do this and see our example protocols (under /examples) for inspiration.
Then customize the variables inside of settings.ts e.g.:
"url": "127.0.0.1:5000",
...Finally run setup.sh to finish the setup. This script will run the following tasks for you:
- Installing dependencies for gulp
- Parsing the annotation protocol. Be sure to read all warnings and resolve all errors before continuing!
- Ask you to set up an admin account (necessary for data upload).
- Set up the database for you
Whenever you change something in the settings or the protocol be sure to run this script again. You can skip steps, like rebuilding the database if necessary.
To run the server locally for testing purposes run
flask startWhen debugging and changing things client side it is very convenient to let gulp watch file changes and transpile your code automatically: npm start watch
To add a file with data, start the server, log in with your admin account, and go to "Data Console". There you can upload the file. Be sure that it is a tab separated file with the three columns "content", "context" and "meta".
When you want to display files you can use "Upload Folder" in "Data Console" and then upload a file with <folder-name>/<file-name> in the content fields for every file in the folder.
When running HUMAN on a server we recommend using gunicorn (also included in the environment). The script start_server.sh should take care of starting the server, however you have to insert the ip and port yourself and make sure to add the web address into the url field in settings.ts and run setup.sh again.
Another possibility is using the provided Dockerfile to build an image and the run it in a container.