Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.16 KB

README.md

File metadata and controls

53 lines (38 loc) · 1.16 KB

ServerComm

All communcation between frontend and DB

Maintainability Test Coverage

Installation

Clone the repository

Install the dependencies:

npm install

Set the environment variables(see src/config/index to know what environment variables this app need):

cp .env.example .env

# open .env and modify the environment variables (if needed)

Run application:

npm run dev

Run tests:

npm run test

Neo4j Server

Below is a command for starting a Neo4j container in Docker

docker run \
        -d \
        --publish=7474:7474 --publish=7687:7687 \
        -e NEO4J_PLUGINS='["apoc", "graph-data-science"]' \
        -e NEO4J_apoc_export_file_enabled=true \
        -e NEO4J_apoc_import_file_enabled=true \
        -e NEO4J_apoc_import_file_use__neo4j__config=true \
        --name neo4j \
        neo4j

License

MIT