Sfoglia il codice sorgente

Replace local uris

Arkadiusz Ryś 2 anni fa
parent
commit
efcf319cc1

+ 2 - 1
data/configuration.toml

@@ -1,4 +1,5 @@
-endpoint_sparql = "http://127.0.0.1:3030/SystemDesignOntology2Layers/sparql" # Fuseki SPARQL endpoint for the drivetrain
+endpoint_sparql = "https://workflow.rys.app/sparql/SystemDesignOntology2Layers"
+#endpoint_sparql = "http://127.0.0.1:3030/SystemDesignOntology2Layers/sparql" # Fuseki SPARQL endpoint for the drivetrain
 #endpoint_sparql = "http://127.0.0.1:3030/Drivetrain/sparql" # Fuseki SPARQL endpoint for the drivetrain
 #endpoint_sparql = "http://127.0.0.1:8000/" # Fuseki SPARQL endpoint (default spendpoint dev uri)
 #endpoint_sparql = "https://fuseki.rys.app/example/" # Deployement endpoint

+ 1 - 1
data/palette/conversion_function.toml

@@ -45,7 +45,7 @@ SELECT ?conversion ?conversion_input ?conversion_output ?conversion_duration ?co
 '''
 query_with_service = '''
 SELECT ?conversion ?conversion_input ?conversion_output ?conversion_duration ?conversion_success WHERE {
-  SERVICE <http://localhost:8000/> {
+  SERVICE <https://spendpoint.rys.app/> {
     BIND(dtf:conversion("{{ input_file }}", "{{ output_file }}") AS ?conversion)
   }
 }

+ 1 - 1
data/palette/example_function.toml

@@ -40,7 +40,7 @@ PREFIX federation: <http://ua.be/sdo2l/vocabulary/federation#>
 '''
 query = '''
 SELECT ?outlier ?outlier_value WHERE {
-  SERVICE <http://localhost:8000/> {
+  SERVICE <https://spendpoint.rys.app/> {
     SELECT ?outlier ?outlier_value WHERE {
       BIND(dtf:example("data2.csv", "1") AS ?outlier)
     }

+ 1 - 1
data/palette/outlier_function.toml

@@ -62,7 +62,7 @@ visual_support = true
 
 [[replacements]]
 placeholder = 'service_endpoint'
-suggestion  = 'http://127.0.0.1:8000/'
+suggestion  = 'https://spendpoint.rys.app/'
 description = 'Which service do you want to use?'
 
 [[replacements]]