Skip to content

Commit

Permalink
[#96] Fix script execution
Browse files Browse the repository at this point in the history
  • Loading branch information
palagdan committed Dec 30, 2024
1 parent d899076 commit db263a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions deploy/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/constants/vocabulary.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
Expand Down

0 comments on commit db263a1

Please sign in to comment.