How can I automatically load fixtures into my development database but not my database when using django-nerel?

I would like to load some test data into my development db, but not put it into my production db.

In django, you can create database bindings using this mechanism: http://docs.djangoproject.com/en/dev/ref/django-admin/#database-specific-fixtures

Is it possible to do something like this with django-nonrel?

+2


a source to share


1 answer


By default, the local data store is separate from the production data store.



0


a source







All Articles