Files @ f066d6e874db
Branch filter:

Location: light9/bin/rdfdb

drewp@bigasterisk.com
2to3 with these fixers: all idioms set_literal
Ignore-this: cbd28518218c2f0ddce8c4f92d3b8b33
#!bin/python
import run_local
import os
from light9 import networking, showconfig
import rdfdb.service

rdfdb.service.main(
    dirUriMap={
        os.environ['LIGHT9_SHOW'].rstrip('/') + '/': showconfig.showUri() + '/'
    },
    prefixes={
        'show': showconfig.showUri() + '/',
        '': 'http://light9.bigasterisk.com/',
        'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
        'rdfs': 'http://www.w3.org/2000/01/rdf-schema#',
        'xsd': 'http://www.w3.org/2001/XMLSchema#',
        'effect': 'http://light9.bigasterisk.com/effect/',
        'dev': 'http://light9.bigasterisk.com/device/',
    },
    port=networking.rdfdb.port,
)