harmonize file structure for third party plugins

This commit is contained in:
2015-02-14 03:35:21 +01:00
parent fa4a9859c5
commit 114d2d9214
268 changed files with 57067 additions and 1552 deletions
+9
View File
@@ -0,0 +1,9 @@
APP_CONFIG = "production.ini"
#Setup logging
import logging.config
logging.config.fileConfig(APP_CONFIG)
#Load the application
from paste.deploy import loadapp
application = loadapp('config:%s' % APP_CONFIG)