remotes/1693045480750635534/spooky-22
Aevann1 2021-12-12 21:56:11 +02:00
parent eac74de5ce
commit 64e913f44e
1 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,7 @@ gevent.monkey.patch_all()
from os import environ
import secrets
from flask import *
from flask_assets import Bundle, Environment
from flask_caching import Cache
from flask_limiter import Limiter
from flask_compress import Compress
@ -88,6 +89,13 @@ cache = Cache(app)
Compress(app)
mail = Mail(app)
assets = Environment(app)
css = Bundle('src/main.css', output='dist/main.css', filters='postcss')
assets.register('css', css)
css.build()
@app.before_request
def before_request():
@ -115,6 +123,10 @@ def before_request():
elif "Mobile/" in ua: g.system="ios/webview"
else: g.system="other/other"
@app.get('/tw')
def get_tailwind():
return render_template('tailwind.html')
@app.teardown_appcontext
def teardown_request(error):
if hasattr(g, 'db') and g.db: