Some checks failed
Build and Deploy Demo App / build-and-deploy (push) Failing after 18s
13 lines
302 B
Python
13 lines
302 B
Python
from flask import Flask, render_template
|
|
from flask_bootstrap import Bootstrap5 # Use Bootstrap5 for modern BS5
|
|
|
|
app = Flask(__name__)
|
|
bootstrap = Bootstrap5(app)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0', port=5000)
|