5 Commits

Author SHA1 Message Date
arian 524fc6ef54 mv conf vars external 2026-03-28 10:07:37 -04:00
arian cdacbd9d8f bump Werkzeug==3.1.7 2026-03-25 04:47:57 -04:00
arian c4d18aa680 increase concurrent uploads 2026-03-15 17:36:19 -04:00
arian 7da1443d09 Merge branch 'pr-healthcheck' 2026-03-10 08:04:40 -04:00
arian 771f557bae /ping healthcheck endpoint 2026-03-10 08:03:28 -04:00
3 changed files with 7 additions and 3 deletions
+4
View File
@@ -18,6 +18,10 @@ 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.6
Werkzeug==3.1.7
+2 -2
View File
@@ -11,7 +11,7 @@
<body>
<script>
Dropzone.options.myDropzone = {
parallelUploads: 2,
parallelUploads: 4,
uploadMultiple: true,
acceptedFiles: 'audio/*'
};
@@ -20,4 +20,4 @@
class="dropzone"
id="my-dropzone"></form>
</body>
</html>
</html>