Compare commits

...

6 Commits

Author SHA1 Message Date
Caio1w
f201c8edbd paginas adicionadas 2025-10-28 20:42:28 -03:00
Caio1w
33334980a6 Atualizei a estrutura de pasta 2025-10-28 17:52:51 -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
9 changed files with 57 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

17
web/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/assets/facivon-DRlDKSIp.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<title>CtrlCash</title>
<script type="module" crossorigin src="/assets/index-DnG1l7wa.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Chqn8Dfe.css">
</head>
<body>
<div id="app"></div>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
</html>