fix content folder error
parent
632652914c
commit
9f24dc58a0
2
app.py
2
app.py
|
|
@ -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'
|
||||||
|
|
|
||||||
|
|
@ -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():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue