Skip to content

Instantly share code, notes, and snippets.

@lawlesst
Created November 15, 2013 21:44
Show Gist options
  • Save lawlesst/7492170 to your computer and use it in GitHub Desktop.
Save lawlesst/7492170 to your computer and use it in GitHub Desktop.
@prefix fuseki: <http://jena.apache.org/fuseki#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@prefix : <#> .
# Declaration additional assembler items.
[] ja:loadClass "com.hp.hpl.jena.tdb.TDB" .
# TDB
tdb:DatasetTDB rdfs:subClassOf ja:RDFDataset .
tdb:GraphTDB rdfs:subClassOf ja:Model .
<#dataset> rdf:type tdb:DatasetTDB ;
tdb:location "/home/vagrant/tdb_vitro" ;
tdb:unionDefaultGraph true ;
.
#run as
#./fuseki-server --desc=vitro.ttl --update /vitro
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment