Skip to content

Redshift database backend for Django

License

Notifications You must be signed in to change notification settings

jazzband/django-redshift-backend

This branch is up to date with master.

Folders and files

NameName
Last commit message
Last commit date
Aug 23, 2024
Jan 2, 2025
Nov 23, 2024
Nov 23, 2024
Jul 22, 2024
Sep 16, 2024
Jan 3, 2021
Nov 23, 2024
Jul 24, 2024
Jul 23, 2018
Nov 28, 2024
Oct 25, 2021
Nov 30, 2018
Jul 30, 2018
Jun 16, 2024
Jan 3, 2021
Nov 23, 2024
Nov 23, 2024

Repository files navigation

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 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