diff --git a/cloud/app.py b/cloud/app.py index 2287692..61ca1e5 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -31,7 +31,7 @@ cooking_collection = db["cooking_parameters"] telemetry_collection = db["telemetry_data"] # Ensure the camera image storage directory exists when the app starts -CAMERA_IMAGE_DIR = "storage/dishCameraImages" +CAMERA_IMAGE_DIR = "storage/dishPhotos" os.makedirs(CAMERA_IMAGE_DIR, exist_ok=True) # ---------------------------------------------------------