django-redshift-backend

Redshift database backend for Django


Keywords
django, redshift
License
Apache-2.0
Install
pip install django-redshift-backend==3.0.0

Documentation

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

GitHub Actions

Coverage

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