django-redmine-models

Django models for the Redmine database.


Keywords
django, python, redmine
License
BSD-3-Clause
Install
pip install django-redmine-models==0.3

Documentation

django-redmine-models

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