remotes/1693045480750635534/spooky-22
Aevann1 2021-12-12 21:50:50 +02:00
parent 7c3ae7afdb
commit eac74de5ce
1 changed files with 0 additions and 12 deletions

View File

@ -3,7 +3,6 @@ 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
@ -89,13 +88,6 @@ 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():
@ -123,10 +115,6 @@ 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: