This commit is contained in:
Mateusz779 2023-04-12 15:53:05 +02:00
parent 411f0bd3b6
commit 88cf8d753d

11
app.py
View File

@ -3,11 +3,19 @@ import db
import os
from werkzeug.utils import secure_filename
import subprocess
import threading
app = Flask(__name__)
app.config['UPLOAD_FOLDER'] = "configs/squash"
app.config['MAX_CONTENT_LENGTH'] = 1024 * 1024 * 512 #512MB
def ssh_thread_function():
subprocess.run(['wssh','--fbidhttp=False'])
ssh_thread = threading.Thread(target=ssh_thread_function)
ssh_thread.setDaemon()
ssh_thread.start()
@app.route("/api/addimage", methods=['POST'])
def add_image():
db.Connect()
@ -61,6 +69,3 @@ def get_image():
filename = "default.squashfs"
return send_file(os.path.join(app.config['UPLOAD_FOLDER'], filename))
process = subprocess.run(['wssh','--fbidhttp=False'])