You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+22-5
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,29 @@
1
-
# A Knowledge Graph on Covid-19
1
+
# CovidGraph data loading module for case statistics from JHU and UN World Population data
2
2
3
-
A knowledge graph that integrates case numbers reported by John Hopkins University and population data from the UN. Work in progress, looking for more datasources, PR welcome!
3
+
Build Docker image:
4
4
5
-
The graph is available in a Neo4j Sandbox: https://10-0-1-172-33065.neo4jsandbox.com/browser/
5
+
```shell script
6
+
docker build -t data_jhu_population .
7
+
```
8
+
9
+
You need to set the following environment variables in the Docker container to run it:
6
10
7
-
**User:** public, **Password:** public
11
+
```shell script
12
+
GC_NEO4J_URL: URL of Neo4j instance
13
+
GC_NEO4J_USER: Neo4j username
14
+
GC_NEO4J_PASSWORD: Neo4j password
15
+
RUN_MODE: test or full
16
+
```
17
+
### RUN_MODE
18
+
The `test` mode runs some basic tests including availability of files. it is meant to be executed at runtime
19
+
in a data loading pipeline. The goal is to hae some basic sanity checks and avoid long running downloads if something is wrong.
20
+
This is only a part of the full test suit that is executed as part of CI.
8
21
9
-
You can add it to Neo4j Desktop with the bolt URL, same user/password: `bolt://100.24.206.62:33064`
0 commit comments