setup Angular app and integrate Docker image build in docker-compose.yml

This commit is contained in:
Thomas Peetz
2025-07-20 11:19:05 +02:00
parent 169b349277
commit 01788286e2
18 changed files with 145 additions and 33 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ def rename_file(file_info: dict):
item_id = file_info['id']
file_name = file_info['file_name']
if file_name is None:
log.info("file_anme is not set, rename is not executed")
log.info("file_name is not set, rename is not executed")
return
file = Path(args.dir, file_name)
new_file_path = file.with_name(f"{item_id}{file.suffix}")