barseghyanartur / django-dash

Customisable, modular dashboard application framework for Django.
https://pypi.python.org/pypi/django-dash
383 stars 85 forks source link

'dash' label duplicate #11

Closed alexkcode closed 9 years ago

alexkcode commented 9 years ago

Getting django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: dash exception when trying to migrate in django-1.7. Any fixes? I have dash version 0.4.12

barseghyanartur commented 9 years ago

@alexkcode

Can it be you've added some apps twice?

I'm now working on the version 0.5, which (among other functional improvements) does include quick start and some other missing documentation information.

But, to answer your question, I have just tried it with a completely fresh project (installed Django 1.7.7 and created a test project from scratch) and it worked just fine - no errors.

However, I had to remove the dash.contrib.plugins.dummy from settings, since it's contains a bug (app loading) in version 0.4.12 (fixed in 0.5 which is not yet released). You won't need it that much anyway.

See the source here and tell me if there are any problems.

https://bitbucket.org/barseghyanartur/django-dash-example

barseghyanartur commented 9 years ago

@alexkcode

FYI, 0.4.13 contains the hotfix for bug in dash.contrib.plugins.dummy. The example project mentioned above has been updated to work with that version. Everything runs smoothless.

alexkcode commented 9 years ago

OK will check my setup, thanks for the reply!

alexkcode commented 9 years ago

Seems to be fixed after pip uninstall and pip install, thanks