started with flask for kobuki website

This commit is contained in:
ishak jmilou.ishak
2024-09-26 15:31:41 +02:00
parent 38a24b1d98
commit 2fb81b6c72
9 changed files with 213 additions and 1 deletions

10
web/app.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)