summaryrefslogtreecommitdiff
path: root/demo/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'demo/settings.py')
-rw-r--r--demo/settings.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/demo/settings.py b/demo/settings.py
index 96de64f0..8e82adf8 100644
--- a/demo/settings.py
+++ b/demo/settings.py
@@ -98,6 +98,7 @@ GRAPPELLI_ADMIN_TITLE = '<a href="/">Gnowledge Studio</a>'
GRAPPELLI_INDEX_DASHBOARD = "demo.dashboard.CustomIndexDashboard"
+GSTUDIO_RDF_FILEPATH = os.path.join(os.path.dirname(__file__), 'rdffiles.rdf')
# Authentication related
ACCOUNT_ACTIVATION_DAYS = 2
@@ -105,6 +106,14 @@ EMAIL_HOST = 'localhost'
DEFAULT_FROM_EMAIL = 'webmaster@localhost'
LOGIN_REDIRECT_URL = '/'
+# fourstore related
+FOURSTORE_KBNAME = "demo" # Name of 4store knowledge base
+FOURSTORE_PORT = 8067 # Port for 4store HTTP server
+SPARQL_ENDPOINT = "http://localhost:8067/sparql/"
+
+
+
+
LANGUAGES = (('en', gettext('English')),
@@ -173,6 +182,9 @@ INSTALLED_APPS = (
'registration',
'graphviz',
'demo',
+ 'fourstore',
+ 'HTTP4Store',
+ 'html5lib',
# Uncomment the south entry to activate south for database migrations
# Please do install south before uncommenting
# command: sudo pip install south