Getting Started

Installation

Configuration

Once you’ve installed neodjango and configure your Django project for connect to Neo4j.

Database Setup

An example settings.py:

INSTALLED_APPS = (
    # other apps
    "neodjango",
)

NEO4J_DATABASES = {
        'default' : {
                'HOST':'localhost',
                'PORT':7474,
                'ENDPOINT':'/db/data'
        }
}