Skip to main content

Django models for the Redmine database.

Project description

PyPI Version

Using django-redmine-models

Define the database parameters as usual in the DATABASES setting then add:

REDMINE_DATABASE = "the-redmine-db-key-in-DATABASES"

and define (or add) the database router:

DATABASE_ROUTERS = ["redmine_models.routers.DatabaseRouter"]

By default, it is supposed that an external redmine service is being accessed, and thus the models are unmanaged. If that’s not desired, e.g. for testing you want the test tables to be created automatically, use the following setting:

REDMINE_MODELS_MANAGED = True

Then use the models:

from redmine_models.models import Project
print Project.objects.all()
# etc...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-redmine-models-0.3.tar.gz (5.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page