Author
|
zPlus <zplus@peers.community>
2024-06-20 11:54:52
|
Committer
|
zPlus <zplus@peers.community>
2024-06-20 11:54:52
|
Commit
|
b6c1cbf
(patch)
|
Tree
|
939a24d
|
Parent(s)
|
|
Add FUSEKI_ENDPOINT instruction to README.
commits diff:
33f6c91..b6c1cbf
1 file changed,
2 insertions,
0 deletions
—
download
Diffstat
Diff options
+2/-0
M README
28
|
28
|
|
python3 -m venv venv
|
29
|
29
|
|
source venv/bin/activate
|
30
|
30
|
|
pip install -r requirements.txt
|
|
31
|
+ |
# Set the Fuseki endpoint URI that the app will use for querying
|
|
32
|
+ |
export FUSEKI_ENDPOINT="https://example.org:3030/dokk"
|
31
|
33
|
|
gunicorn --reload --worker-connections=4 --threads=4 --bind 0.0.0.0:8080 --error-logfile=- app:application
|