fix content folder error

master
a2nr 2026-01-04 16:52:30 +07:00
parent 632652914c
commit 9f24dc58a0
2 changed files with 2 additions and 2 deletions

2
app.py
View File

@ -17,7 +17,7 @@ from datetime import datetime
app = Flask(__name__) app = Flask(__name__)
# Configuration # Configuration
CONTENT_DIR = '../content' CONTENT_DIR = 'content'
STATIC_DIR = 'static' STATIC_DIR = 'static'
TEMPLATES_DIR = 'templates' TEMPLATES_DIR = 'templates'
TOKENS_FILE = 'tokens.csv' TOKENS_FILE = 'tokens.csv'

View File

@ -9,7 +9,7 @@ import glob
import uuid import uuid
# Configuration # Configuration
CONTENT_DIR = '../content' CONTENT_DIR = 'content'
TOKENS_FILE = 'tokens.csv' TOKENS_FILE = 'tokens.csv'
def get_lesson_names(): def get_lesson_names():