diff --git a/deploy/docker-compose.yml b/deploy/docker-compose.yml index 2f4cead..0974d1d 100644 --- a/deploy/docker-compose.yml +++ b/deploy/docker-compose.yml @@ -43,12 +43,12 @@ services: SCRIPTRULES: "${SCRIPTRULES:-${PWD}/../../s-pipes-editor/src/main/resources/rules}" ENGINEURL: "${SPIPES_ENGINE:-http://s-pipes-engine:8080/s-pipes}/" RDF4J_REPOSITORYURL: "${RDF4J_SERVER_URL:-http://db-server:7200}/repositories" - RDF4J_REPOSITORYNAME: "${RDF4J_REPOSITORYNAME:-s-pipes-hello-world}" + RDF4J_REPOSITORYNAME: "${RDF4J_REPOSITORYNAME:-s-pipes-execution-log}" RDF4J_PCONFIGURL: "${RDF4J_PCONFIGURL:-./s-pipes-engine/config.ttl}" volumes: - /tmp:/tmp - ${SHARED_ROOT:-/home}:${SHARED_ROOT:-/home} - - /usr/local/tomcat/temp/:/usr/local/tomcat/temp/ + # - /usr/local/tomcat/temp/:/usr/local/tomcat/temp/ s-pipes-engine: image: "ghcr.io/kbss-cvut/s-pipes/s-pipes-engine:latest" @@ -62,7 +62,7 @@ services: volumes: - /tmp:/tmp - ${SHARED_ROOT:-/home}:${SHARED_ROOT:-/home} - - /usr/local/tomcat/temp/:/usr/local/tomcat/temp/ + # - /usr/local/tomcat/temp/:/usr/local/tomcat/temp/ db-server: build: diff --git a/src/constants/vocabulary.js b/src/constants/vocabulary.js index 8a0972c..5e24bb2 100644 --- a/src/constants/vocabulary.js +++ b/src/constants/vocabulary.js @@ -40,10 +40,10 @@ export const MODULE_EXECUTION_START_DATE = `${S_PIPES}/has-module-execution-star export const MODULE_EXECUTION_FINISH_DATE = `${S_PIPES}/has-module-execution-finish-date-unix`; export const MODULE_INPUT_PATH = `${S_PIPES}/has-module-input-path`; export const MODULE_OUTPUT_PATH = `${S_PIPES}/has-module-output-path`; -export const PARAMETER = `${S_PIPES}/has-parameter`; export const FUNCTION_LOCAL_NAME = `${S_PIPES}/has-function-local-name`; export const RDF4j_TRANSFORMATION_ID = `${S_PIPES}/rdf4j-transformation-id`; +export const PARAMETER = `${S_PIPES_VIEW}/has-parameter`; export const X = `${S_PIPES_VIEW}/has-x-coordinate`; export const Y = `${S_PIPES_VIEW}/has-y-coordinate`; export const EDGE = `${S_PIPES_VIEW}/consists-of-edge`;