Skip to content

gijzelaerr/djonet

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
This branch is 50 commits ahead of mbucc:master.

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

About

Djonet is a MonetDB backend for Django. It is not complete, but works for us. Bugfixes are welcome, please issue a pull request.

Installation

run from the source folder:

$ python setup.py install

or make sure the Djonet source directory is in your PYTHONPATH.

Djonet is also installable with pip:

$ pip install djonet

Usage

put something like this in your Django settings.py:

DATABASES = {
    'default': {
        'ENGINE': 'djonet',
        'NAME': 'test',
        'USER': 'test',
        'PASSWORD': 'test',
        'HOST': 'localhost',
        'PORT': 5000,
    }
}

If you want to issue management commands, like creating (test) databases you need to add something like this to your settings.py also:

MONETDB_HOST = 'localhost'
MONETDB_PORT = 50000
MONETDB_PASSPHRASE = 'test'

About

About

django backend for MonetDB

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%