From 007a54501693fe28c25513ce8391da919638384d Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi (aider) Date: Wed, 5 Feb 2025 12:22:10 +0300 Subject: feat: Add LMDB sample data retrieval API endpoint with tests Signed-off-by: Munyoki Kilyungi --- gn3/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gn3/settings.py') diff --git a/gn3/settings.py b/gn3/settings.py index 9a3f7eb..e988106 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -19,9 +19,9 @@ SPARQL_ENDPOINT = os.environ.get( "SPARQL_ENDPOINT", "http://localhost:9082/sparql") -# LMDB path -LMDB_PATH = os.environ.get( - "LMDB_PATH", f"{os.environ.get('HOME')}/tmp/dataset") +# LMDB paths +LMDB_DATA_PATH = os.environ.get( + "LMDB_DATA_PATH", "/export5/lmdb-data-hashes") # SQL confs SQL_URI = os.environ.get( -- cgit 1.4.1