-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes to the rdflib-endpoint dependency #1
Comments
Actually I just released So you would just need to change your |
Thanks a lot for the heads-up and your work on rdflib-endpoint! I will adapt my code accordingly! |
(I didn't get the SparqlRouter to work properly so I used the first method)
Hi @proycon, I made some changes to rdflib-endpoint that will impact how the endpoint is deployed in your app
Starting from v0.3.0 you can define on which path the SPARQL endpoint will be deployed, and the YASGUI will not be deployed on / by default. YASGUI is now served on the same path as the SPARQL endpoint when the request headers ask for text/html in Accept (when people access it through the browser)
To fix this you might want to add a line with
path="/sparql",
when instantiating the SparqlEndpoint class:https://github.com/proycon/codemeta-server/blob/master/codemeta_server/main.py#L101
Let me know if you are facing any issue with this new approach!
The text was updated successfully, but these errors were encountered: