Compare commits

...

5 Commits

Author SHA1 Message Date
Caio1w
ecf237173c deletei a .vscode bugada denovo 2025-10-27 20:03:01 -03:00
Caio1w
746c34879e Deletei a .vscode bugada 2025-10-27 20:02:31 -03:00
Caio1w
f599424ae9 Errei 2025-10-27 17:36:42 -03:00
Caio1w
f3a05d4bb4 Removi pastas 2025-10-27 17:35:33 -03:00
Caio1w
eb43b636c0 Initial project setup with Flask, including main application file, requirements, and basic HTML template. 2025-10-20 19:55:40 -03:00
2 changed files with 14 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()

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
Flask==3.1.2
Werkzeug==3.1.3