Created
November 15, 2013 21:44
-
-
Save lawlesst/7492170 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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