Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Change the django settings.

Code Block
cd /opt/norduni/src/niweb/niweb/
cp generic_settings.py settings.py
vi settings.py

Change at least the following settings.

Code Block
NIWEB_ROOT = '/opt/norduni/src/niweb/'
# Database settings
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'norduni',
        'USER': 'postgres',
        'PASSWORD': 'secret',
        'HOST': 'localhost'
    }
}
# Neo4j settings
NEO4J_RESOURCE_URI = '/opt/norduni/dependencies/neo4jdb/'

 

Neo4j >1.5 embedded with Python bindings

...