Initial checkin of Blender Cloud Server.

This commit is contained in:
2016-07-29 16:29:51 +02:00
commit 6ab2709cc4
5 changed files with 58 additions and 0 deletions

15
runserver.wsgi Normal file
View File

@@ -0,0 +1,15 @@
from os.path import abspath, dirname
import sys
from pillar_server import PillarServer
activate_this = '/data/venv/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
from flup.server.fcgi import WSGIServer
sys.path.append('/data/git/blender-cloud/bcloud-server/')
application = PillarServer(dirname(abspath(__file__)))
application.process_extensions()
if __name__ == '__main__':
WSGIServer(application).run()