Projede Blueprint kullanayım diyorum fakat bir türlü beceredim.
apps.py
from flask import Blueprint
apps = Blueprint('apps', __name__,
template_folder='templates',
url_prefix='/landing',
static_folder='static')
main.py'de eklediğim kısımlar
app.register_blueprint(apps.apps)
@app.route("/goApp")
def goApp():
return render_template("/apps/index.html")
localhost/goApp/
bu şekide çalıştırdığımda apps/templates klasöründeki index.html bulunamadı diyor. line o main.py'deki goApp satırını gösteriyor.