All checks were successful
Build and Deploy Demo App / build-and-deploy (push) Successful in 50s
13 lines
311 B
Python
13 lines
311 B
Python
from flask import Flask, render_template
|
|
from flask_bootstrap import Bootstrap5 # Updated import for Bootstrap 5 support
|
|
|
|
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)
|