2025-07-31 01:27:33 +03:00
|
|
|
import os
|
|
|
|
|
from os import system as console
|
2025-07-03 01:37:41 +03:00
|
|
|
from flask import Flask, render_template
|
2025-07-31 01:27:33 +03:00
|
|
|
from flask_scss import Scss
|
2025-07-03 01:37:41 +03:00
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
2025-07-31 01:27:33 +03:00
|
|
|
app.debug = True
|
|
|
|
|
# if not os.path.exists("static/css/main.css"):
|
|
|
|
|
os.system("sass static/scss/main.scss static/style/main.css")
|
2025-07-03 01:37:41 +03:00
|
|
|
|
|
|
|
|
@app.route("/")
|
|
|
|
|
def hello_world():
|
|
|
|
|
return render_template('index.html')
|