always use debug

This commit is contained in:
bakatrouble 2021-06-16 23:33:15 +03:00
parent c7dd8da30a
commit c372f21cb1

View File

@ -12,7 +12,7 @@ from sanic_cors import CORS
from utils import get_j2env, get_sort_icon, get_sort_link, resolve_path, list_dir
DEBUG = environ.get('ENV', '').upper() != 'PRODUCTION'
DEBUG = True # environ.get('ENV', '').upper() != 'PRODUCTION'
app = Sanic('autoindex')
cors = CORS(app)