mirror of https://github.com/status-im/cabot.git
removed URL file missing errors and explicitly defined plugin version numbers.
This commit is contained in:
parent
db554a5192
commit
6e5762975d
|
@ -150,7 +150,7 @@ def append_plugin_urls():
|
|||
try:
|
||||
_module = import_module('%s.urls' % plugin)
|
||||
except Exception as e:
|
||||
logger.error('No url file available for plugin %s' % plugin)
|
||||
pass
|
||||
else:
|
||||
urlpatterns += patterns('',
|
||||
url(r'^plugins/%s/' % plugin, include('%s.urls' % plugin))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Plugins to be loaded at launch
|
||||
CABOT_PLUGINS_ENABLED=cabot_alert_hipchat,cabot_alert_twilio,cabot_alert_email
|
||||
CABOT_PLUGINS_ENABLED=cabot_alert_hipchat==1.6.1,cabot_alert_twilio==1.6.1,cabot_alert_email==1.3.1
|
||||
|
||||
DEBUG=t
|
||||
DATABASE_URL=sqlite:///dev.db
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Plugins to be loaded at launch
|
||||
CABOT_PLUGINS_ENABLED=cabot_alert_hipchat,cabot_alert_twilio,cabot_alert_email
|
||||
CABOT_PLUGINS_ENABLED=cabot_alert_hipchat==1.6.1,cabot_alert_twilio==1.1.4,cabot_alert_email==1.3.1
|
||||
|
||||
DATABASE_URL=postgres://cabot:cabot@localhost:5432/index
|
||||
DJANGO_SETTINGS_MODULE=cabot.settings
|
||||
|
|
Loading…
Reference in New Issue