blob: fe9647ca6cd54464e6a90bde271f37a3a9b79708 [file] [log] [blame]
Akronca9bd982016-12-06 16:59:57 +01001import os
2
3import sys
4
5from server import app
6
7
8__author__ = 'hanl'
9
10APP_PATH = "/home/korap/virtual_flask"
11activate_this = os.path.join(APP_PATH, 'flask/bin', 'activate_this.py')
12execfile(activate_this, dict(__file__=activate_this))
13sys.path.append(os.path.join(APP_PATH, 'service'))
14
15from server import app as application