moving tons of stuff around

This commit is contained in:
2025-07-09 01:27:55 -05:00
parent d7a610a83b
commit 5e828f8e74
19 changed files with 7941 additions and 2 deletions

BIN
beta-0.1.15.zip Normal file

Binary file not shown.

7933
plant_db.sql Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,6 @@
# expose the upload helper at package level to avoid
# circular imports between media.routes and utility.routes
from .routes import _process_upload_file
__all__ = ['_process_upload_file']

View File

@ -142,4 +142,4 @@ def init_media_tasks(celery_app):
Called by the JSONdriven loader so tasks_init no longer errors.
Celery scheduling is handled via on_after_configure.
"""
celery_app.logger.info("[Media] init_media_tasks called (noop)")
celery_app.log.get_default_logger().info("[Media] init_media_tasks no-op")

View File

@ -35,7 +35,7 @@ from plugins.plant.models import (
)
from plugins.media.models import Media
from plugins.utility.models import ImportBatch
from plugins.utility.tasks import import_text_data
from plugins.media import _process_upload_file
bp = Blueprint(
'utility',