init: UI выбора файлов — input[file], таблица, Flask skeleton
Deploy loadtest / validate (push) Waiting to run

This commit is contained in:
2026-07-10 07:45:40 +04:00
commit d2a5a52d30
7 changed files with 245 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)