Compare commits
6 Commits
vue
...
f201c8edbd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f201c8edbd | ||
|
|
33334980a6 | ||
|
|
746c34879e | ||
|
|
f599424ae9 | ||
|
|
f3a05d4bb4 | ||
|
|
eb43b636c0 |
12
app/main.py
Normal file
12
app/main.py
Normal 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
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
Flask==3.1.2
|
||||||
|
Werkzeug==3.1.3
|
||||||
BIN
web/assets/CtrlCash-blue-DUaQbcwD.png
Normal file
BIN
web/assets/CtrlCash-blue-DUaQbcwD.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
web/assets/CtrlCash-white-CJM1Egrh.png
Normal file
BIN
web/assets/CtrlCash-white-CJM1Egrh.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
web/assets/Hero-C0gOcyj1.png
Normal file
BIN
web/assets/Hero-C0gOcyj1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 192 KiB |
BIN
web/assets/facivon-DRlDKSIp.ico
Normal file
BIN
web/assets/facivon-DRlDKSIp.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
1
web/assets/index-Chqn8Dfe.css
Normal file
1
web/assets/index-Chqn8Dfe.css
Normal file
File diff suppressed because one or more lines are too long
25
web/assets/index-DnG1l7wa.js
Normal file
25
web/assets/index-DnG1l7wa.js
Normal file
File diff suppressed because one or more lines are too long
17
web/index.html
Normal file
17
web/index.html
Normal 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>
|
||||||
Reference in New Issue
Block a user