This repository has been archived on 2023-02-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-bfct/blender-bfct/runserver.wsgi.example

13 lines
303 B
Plaintext

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()