You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
18 lines
373 B
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)
|
|
|