Files
lair.moe/app.py
T
Sweetbread 3a5e991870
Docker Build and Push / build-and-push (push) Successful in 1m31s
sec: add production server
2025-08-07 21:18:49 +03:00

20 lines
388 B
Python

from os import system as console
from flask import Flask, render_template
app = Flask(__name__)
if app.debug:
console("sass static/style/main.scss static/style/main.css")
@app.route("/")
def index():
return render_template('index.html')
@app.route("/host")
def host():
return render_template('host.html')
@app.route("/us")
def us():
return render_template('us.html')