Skip to content

Latest commit

 

History

History
executable file
·
24 lines (22 loc) · 814 Bytes

README.md

File metadata and controls

executable file
·
24 lines (22 loc) · 814 Bytes

VoColDoco

[To run web server]

npm start 

[To run Sparql Endpoint]

cd helper/tools/apache-jena-fuseki/
./fuseki-server --loc=db --update /dataset

[To insert data to Sparql Endpoint (Simple way)]

cd helper/tools/apache-jena-fuseki/
./bin/s-put http://localhost:3030/dataset ((vocol/master/{filename.ttl})==> it is the graph name) {filename.ttl with its path}
As an example, check this {./bin/s-put http://localhost:3030/dataset vocol/master/repoFolder2/Vehicle.ttl  ../../../../repoFolder2/Vehicle.ttl} 

[To delete data to Sparql Endpoint (Simple way)]

./bin/s-delete http://localhost:3030/dataset {graph name}
An example from the previous command:
{./bin/s-delete http://localhost:3030/dataset http://localhost:3030/dataset/vocol/master/repoFolder2/Vehicle.ttl}