Files
recycling-project-solutions/app/__init__.py
T
Aherobo Ovie Victor 7908b94d40 update
2025-07-21 19:20:44 +01:00

15 lines
314 B
Python

from flask import Flask
def create_app():
app = Flask(__name__)
# Register blueprints
from app.routes import main_bp
app.register_blueprint(main_bp)
# Ensure the static folder is properly set
app.static_folder = 'static'
app.template_folder = 'templates'
return app