Sort-of-working flask runtime

This commit is contained in:
2024-07-05 17:33:05 -03:00
parent f0aa127eed
commit 30cfd2e5e6
5 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,7 @@
from flask import Flask
app = Flask("{{name}}")
@app.route('/')
def handle(req):
return "Hello World from Flask!"

View File

@ -0,0 +1,2 @@
name: {{ name }}
runtime: {{ runtime }}

View File

@ -0,0 +1 @@
flask