Files
devops/app.py
gitea d00626a62c
Some checks failed
Build and Deploy Demo App / build-and-deploy (push) Failing after 18s
improved project
2025-11-25 18:49:09 +03:30

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)