From 17db81761cc3fff33cf3ed765521000c2c3648cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 12 Jan 2017 17:56:20 +0100 Subject: [PATCH] Added Flamenco to runserver.wsgi --- runserver.wsgi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runserver.wsgi b/runserver.wsgi index 64b9735..472b949 100644 --- a/runserver.wsgi +++ b/runserver.wsgi @@ -6,13 +6,16 @@ execfile(activate_this, dict(__file__=activate_this)) from flup.server.fcgi import WSGIServer from pillar import PillarServer from attract import AttractExtension +from flamenco import FlamencoExtension sys.path.append('/data/git/blender-cloud/') attract = AttractExtension() +flamenco = FlamencoExtension() application = PillarServer(dirname(abspath(__file__))) application.load_extension(attract, '/attract') +application.load_extension(flamenco, '/flamenco') application.process_extensions() if __name__ == '__main__':