15 lines
366 B
Python
15 lines
366 B
Python
#!/usr/bin/python
|
|
|
|
activate_this = '/srv/http/vue_test/venv/bin/activate_this.py'
|
|
with open(activate_this) as file_:
|
|
exec(file_.read(), dict(__file__=activate_this))
|
|
|
|
import sys
|
|
import logging
|
|
|
|
logging.basicConfig(stream=sys.stderr)
|
|
sys.path.insert(0, "/srv/http/vue_test/")
|
|
|
|
from backend import app as application
|
|
application.secret_key = 'Add your secret key'
|