-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenv_template
More file actions
39 lines (39 loc) · 1.44 KB
/
env_template
File metadata and controls
39 lines (39 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Environment variables for the spoke-genelab KG
#
# Copy this file to .env and set the following variables according to your local installation.
#
KG_VERSION=v0.3.1
# Path to the spoke_genelab repo
KG_GIT=<absolute path to spoke_genelab repo>
# Path to the Neo4J instance in Neo4j Desktop
NEO4J_INSTALL_PATH="<path to Neo4j instance>"
NEO4J_ADMIN_JAVA_OPTS="-Xms16g -Xmx20g -XX:+UseG1GC"
#
# API for BioPortal
BIOPORTAL_API_KEY=<bioportal api key>
#
# The following environmental variables don't need to be changed.
#
NEO4J_USE_SUDO=False
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=neo4jdemo
NEO4J_DATABASE=spoke-genelab-${KG_VERSION}
NEO4J_HOME=${NEO4J_INSTALL_PATH}
NEO4J_BIN=${NEO4J_HOME}/bin
# KG metadata and data files
NEO4J_METADATA=${KG_GIT}/kg/${KG_VERSION}/metadata
NEO4J_DATA=${KG_GIT}/kg/${KG_VERSION}/data
# Graph style sheet URL and file
NEO4J_STYLESHEET_URL=https://raw.githubusercontent.com/BaranziniLab/spoke_genelab/main/kg/${KG_VERSION}/style.grass
NEO4J_STYLESHEET=${KG_GIT}/kg/${KG_VERSION}/style.grass
# Addional cypher statements to be run after database creation, e.g., database administration.
# The whole multiline expression must be quoted as shown in the example below.
# One cypher statement per line terminated with a semicolon.
# Use ${NEO4J_DATABASE} in the cypher statements to specify the database.
# Example:
# NEO4J_CYPHER="<cypher statement 1>;
# <cypherstatment_2>;
# ...
# <cypherstatment_n>;"
#
NEO4J_CYPHER=""