Kairo-Jinkendo/backend/sync_entity_field_registry.py
Lars a6fc86025c
All checks were successful
Deploy Development / deploy (push) Successful in 44s
Test Suite / pytest-backend (push) Successful in 1m54s
Test Suite / lint-backend (push) Successful in 2s
Test Suite / compose-smoke (push) Has been skipped
Test Suite / k6 /api/health Baseline (push) Successful in 19s
Test Suite / playwright-smoke (push) Successful in 15s
AP1.10b/10c: Entity Field System mit dynamischen Vorhaben-Zusatzfeldern.
EFS-Tabellen, Registry-Sync und Fields-API ermöglichen archetyp-spezifische Felder; Frontend rendert sie im Profil-Modal per FieldRenderer.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-09 13:53:07 +02:00

16 lines
295 B
Python

"""Startup sync for Entity Field System registry — AP1.10b."""
from __future__ import annotations
import sys
from entity_fields.sync import sync_entity_field_registry_to_db
def main() -> int:
return sync_entity_field_registry_to_db()
if __name__ == "__main__":
sys.exit(main())