Files
zwift-offline/secure.zwift.com.wsgi
T
2017-11-26 19:42:56 -05:00

11 lines
250 B
Python

#!/usr/bin/python
import os
import sys
import logging
logging.basicConfig(stream=sys.stderr)
SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
sys.path.insert(0, SCRIPT_DIR)
from auth_server import app as application
application.debug = True