Added runserver.wsgi.example

This commit is contained in:
2014-06-18 10:22:00 +02:00
parent 8a59371f18
commit a6431025d7

View File

@@ -0,0 +1,12 @@
activate_this = '/absolute-path/venv/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
import sys
sys.path.insert(0,'/absolute-path/blender-bfct/blender-bfct')
from application import app as application
from application import db
if (__name__ == '__main__'):
app.run()