Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.45 KB

File metadata and controls

38 lines (31 loc) · 1.45 KB

eol_website

This repository contains rails code for the new version of EOL (TRAMEA).

Build Status Coverage Status Code Climate

Up and Running

You should install the following before proceeding:

  • MySQL or MariaDB
  • Neo4j
    • brew install neo4j
    • brew services start neo4j (or just neo4j start if you don't want it always running)
    • visit http://localhost:7474/browser/
    • login with neo4j:neo4j
    • change your password as directed, e.g.: YOURNEWPASSWORD
    • export EOL_TRAITBANK_URL=http://neo4j:YOURNEWPASSWORD@localhost:7474
    • rails runner "TraitBank::Admin.setup"
  • ElasticSearch (brew install elasticsearch)

...You will need to define the following ENV variables (e.g.: export VAR=val):

EOL_TRAITBANK_URL=http://username:password@localhost:7474
EOL_DEVEL_DB_USERNAME=username
EOL_DEVEL_DB_PASSWORD=password

Before getting far, you should install ElasticSearch:

brew install elasticsearch   # Mac OS X
sudo dpkg -i elasticsearch-[version].deb  # Ubuntu

More information

There is various additional information about the project in the doc/ folder.