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
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>
16 lines
295 B
Python
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())
|