hfern / django-redshift-backend

Redshift database backend for Django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redshift database backend for Django

This is a Amazon Redshift database backend for Django.

Jazzband

Read the Docs (master)

PyPI

PyPI - Python Version

PyPI - Django Version

License

Travis (.org) branch

GitHub stars

Documentation

Django settings

ENGINE for DATABASES is 'django_redshift_backend'. You can set the name in your settings.py as:

DATABASES = {
    'default': {
        'ENGINE': 'django_redshift_backend',
        'NAME': '<your database name>',
        'USER': '<your database username>',
        'PASSWORD': '<your database password>',
        'HOST': '<your database hostname>',
        'PORT': '5439',
    }
}

For more information, please refer: Documentation

LICENSE

Apache Software License

About

Redshift database backend for Django

License:Apache License 2.0


Languages

Language:Python 99.4%Language:Dockerfile 0.6%