diff --git a/blender-bfct/runserver.wsgi.example b/blender-bfct/runserver.wsgi.example new file mode 100644 index 0000000..55f493c --- /dev/null +++ b/blender-bfct/runserver.wsgi.example @@ -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() +