13 lines
303 B
Plaintext
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()
|
|
|