home » dokk/dokk.org.git
Author zPlus <zplus@peers.community> 2023-11-19 16:27:23
Committer zPlus <zplus@peers.community> 2023-11-19 16:27:23
Commit d0da939 (patch)
Tree fcf0d7c
Parent(s)

Change default address of Fuseki endpoint.


commits diff: 9f6cab4..d0da939
1 file changed, 1 insertion, 1 deletiondownload


Diffstat
-rwxr-xr-x app.py 2

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+1/-1 M   app.py
index fbad831..7904d78
old size: 9K - new size: 9K
@@ -26,7 +26,7 @@ def query(query_string, jsonld_frame=None):
26 26 """
27 27
28 28 http_request = requests.post(
29 - 'http://dokk:7000/dokk?default-graph-uri=urn:x-arq:UnionGraph',
29 + 'http://localhost:3030/dokk?default-graph-uri=urn:x-arq:UnionGraph',
30 30 data = { 'format': 'json', 'query': query_string})
31 31
32 32 results = http_request.json()