From b6c1cbf166252aa32cd7c1c9e30ff8f70ebe5d4d Mon Sep 17 00:00:00 2001 From: zPlus Date: Thu, 20 Jun 2024 13:54:52 +0200 Subject: [PATCH] Add FUSEKI_ENDPOINT instruction to README. --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index e3e4f8c..48769d6 100644 --- a/README +++ b/README @@ -28,4 +28,6 @@ for configuring paths or other custom settings. python3 -m venv venv source venv/bin/activate pip install -r requirements.txt + # Set the Fuseki endpoint URI that the app will use for querying + export FUSEKI_ENDPOINT="https://example.org:3030/dokk" gunicorn --reload --worker-connections=4 --threads=4 --bind 0.0.0.0:8080 --error-logfile=- app:application