from flask import Flask, render_template app = Flask( __name__, template_folder="../templates", static_folder="../static", ) @app.route("/") def index(): return render_template( "base.html", page_title="OTB Billing", content="OTB Billing v0.0.1 is alive." ) if __name__ == "__main__": app.run(host="127.0.0.1", port=5050)