[Nodeshot] Networking features in nodeshot
Renaud
ml+nodeshot at manda.tagmail.eu
Tue Dec 1 10:45:25 CET 2015
Nemesis a écrit :
>
> # ------ All settings customizations must go here ------ #
>
> INSTALLED_APPS.remove('nodeshot.networking.connectors')
> INSTALLED_APPS.remove('nodeshot.networking.hardware')
> INSTALLED_APPS.remove('nodeshot.networking.links')
> INSTALLED_APPS.remove('nodeshot.networking.net')
>
> Ideally all these apps will live in a separate repo dedicated to mesh
> networks, and some of those modules will live in their own projects
> (eg: links will be django-netjsongraph).
>
> Did you do this or did you do something different?
I did something similar ;)
EXCLUDED_APPS = (
'nodeshot.networking.net',
'nodeshot.networking.links',
'nodeshot.networking.hardware',
'nodeshot.networking.connectors',
'nodeshot.interop.open311'
)
INSTALLED_APPS += (
'myapp'
)
INSTALLED_APPS = set(EXCLUDED_APPS).symmetric_difference(INSTALLED_APPS)
;)
Renaud
More information about the Nodeshot
mailing list