1 Commits

Author SHA1 Message Date
arian 02cf986f97 mv conf vars external 2026-03-10 12:09:57 -04:00
3 changed files with 3 additions and 7 deletions
-4
View File
@@ -18,10 +18,6 @@ def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/ping')
def ping():
return 'pong', 200
@app.route('/', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':
+1 -1
View File
@@ -4,4 +4,4 @@ Flask==3.1.3
itsdangerous==2.2.0
Jinja2==3.1.6
MarkupSafe==3.0.3
Werkzeug==3.1.7
Werkzeug==3.1.6
+1 -1
View File
@@ -11,7 +11,7 @@
<body>
<script>
Dropzone.options.myDropzone = {
parallelUploads: 4,
parallelUploads: 2,
uploadMultiple: true,
acceptedFiles: 'audio/*'
};