Developer notes
Dev build (running Virtuoso and Gstore scala code separately)
# clone repo
git clone https://github.com/dbpedia/gstore.git
cd gstore
# create folder (writable by all services)
mkdir databus
VIRT_PASS='everyoneknows'
# Virtuoso
docker run \
--interactive \
--tty \
--env DBA_PASSWORD=$VIRT_PASS \
--env VIRT_HTTPSERVER_SERVERPORT=3003 \
--publish 1111:1111 \
--publish 3003:3003 \
--volume `pwd`/databus/virtuoso:/database \
openlink/virtuoso-opensource-7:latest
# sbt build and run
sbt clean assembly
java -jar -DvirtuosoPass=$VIRT_PASS target/scala-2.12/gstore-assembly-0.2.0-SNAPSHOT.jarTODO explain local/remote virtuoso
Last updated