X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Fsettings.py;h=bd1474bdc84e678f76f37c2fbeda472add2c5e7f;hb=7464fb5c0d4d4857963b52b944b27df41e4ec1f6;hp=fe71e108697e4e150918a380f012cf7342231670;hpb=3b39e97b04f9333fd58978120f00c1b4ffffbc41;p=unfold.git diff --git a/myslice/settings.py b/myslice/settings.py index fe71e108..bd1474bd 100644 --- a/myslice/settings.py +++ b/myslice/settings.py @@ -2,6 +2,9 @@ import os.path +import djcelery +djcelery.setup_loader() + ### detect if we're in a build environment try: import manifold @@ -233,6 +236,9 @@ INSTALLED_APPS = [ 'south', # Uncomment the next line to enable the admin: 'django.contrib.admin', + # FORGE Plugin app + 'djcelery', + 'forge', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', 'portal', @@ -242,6 +248,8 @@ INSTALLED_APPS = [ # this app won't load in a build environment if not building: INSTALLED_APPS.append ('rest') +BROKER_URL = "amqp://myslice:myslice@localhost:5672/myslice" + for aux in auxiliaries: if os.path.isdir(os.path.join(ROOT,aux)): print "Using devel auxiliary",aux