mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-01-27 15:25:01 -08:00
11 lines
252 B
Python
11 lines
252 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 zwift_offline import app as application
|
|
application.debug = True
|