feat: implemented pwa capabillities and refactored lots of backend things

This commit is contained in:
2025-01-02 02:28:14 +01:00
parent 61abbcccc5
commit 53ee6df95e
41 changed files with 11444 additions and 261 deletions

8
api/router.py Normal file
View File

@ -0,0 +1,8 @@
from flask import send_from_directory, request
def serve_vue_app(app):
return send_from_directory(app.static_folder, 'index.html')
def upload_file(request):
file = request.files['file']