Files
lrc/app.wsgi
2019-04-15 16:12:35 +02:00

15 lines
356 B
Python

#!/usr/bin/python
activate_this = '/srv/http/lrc/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/lrc/")
from backend import app as application
application.secret_key = 'Add your secret key'