preparing for public release
All checks were successful
Build and Publish Docker Image / build (push) Successful in 41s

This commit is contained in:
Timothy Rogers 2025-05-24 17:09:58 -04:00
parent 5d37c7720d
commit 85086c0077
4 changed files with 116 additions and 2 deletions

1
app.py
View file

@ -27,7 +27,6 @@ app = create_app()
storage = StorageBackend(app.config['STORAGE_URL'])
def generate_unique_filename(original_filename):
"""Generate a unique filename while preserving the original extension"""
# Get the file extension
ext = os.path.splitext(original_filename)[1] if '.' in original_filename else ''
# Generate a unique filename using UUID