This commit is contained in:
2025-07-31 01:27:33 +03:00
parent 9d5a1119e6
commit df0a94ceba
16 changed files with 183 additions and 19 deletions
+6
View File
@@ -1,6 +1,12 @@
import os
from os import system as console
from flask import Flask, render_template
from flask_scss import Scss
app = Flask(__name__)
app.debug = True
# if not os.path.exists("static/css/main.css"):
os.system("sass static/scss/main.scss static/style/main.css")
@app.route("/")
def hello_world():