Skip to content

timgraham/django-cockroachdb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cockroach DB backend for Django 2.2

This is an initial attempt at a backend for Django 2.2. You can install it with the following command:

pip install .

You then can use this by putting the following in your settings.py for your site:

DATABASES = {
    'default': {
        'NAME': 'django',
        'USER': 'root',
        'PASSWORD': '',
        'HOST': 'localhost',
        'PORT': '26257',
        'ENGINE': 'cockroach.django',
    }
}

About

CockroachDB Backend for Django

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%