diff --git a/LyricsPy/servicios/lyrics/__init__.py b/LyricsPy/servicios/lyrics/__init__.py index 7f58838..06b69c5 100644 --- a/LyricsPy/servicios/lyrics/__init__.py +++ b/LyricsPy/servicios/lyrics/__init__.py @@ -15,6 +15,7 @@ def create_app(): app.config['SECRET_KEY'] = 'secret-key-goes-here' app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///songs.db' app.config['UPLOAD_FOLDER'] = os.path.join(app.instance_path, 'uploads') + app.config['TEMPLATES_AUTO_RELOAD'] = True app.config['MAX_CONTENT_LENGTH'] = 16 * 1024 * 1024 # 16 MB máximo diff --git a/LyricsPy/servicios/lyrics/templates/404.html b/LyricsPy/servicios/lyrics/templates/404.html index 0d8a9d3..6fc7ab0 100644 --- a/LyricsPy/servicios/lyrics/templates/404.html +++ b/LyricsPy/servicios/lyrics/templates/404.html @@ -3,11 +3,11 @@ {% block content %}