Initial project setup with Flask, including main application file, requirements, and basic HTML template.

This commit is contained in:
Caio1w
2025-10-20 19:55:40 -03:00
parent 35c76aabde
commit eb43b636c0
4 changed files with 24 additions and 0 deletions

12
app/main.py Normal file
View File

@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "<p>Hello, World!</p>"
if __name__ == "__main__":
app.run()