Synchronize your local entity schema definitions with your Base44 project. The command reads all .json and .jsonc files in your entities directory, validates them, and pushes them to Base44.
Your project’s entities directory is defined in the config.jsonc file.
Usage
Sync behavior
The command performs a full sync operation. For each entity, the action taken is determined by its state locally and remotely:
| Local state | Remote state | Result |
|---|
| Entity exists | Entity exists | Remote schema is replaced |
| Entity exists | Entity missing | New entity is created |
| Entity missing | Entity exists | Remote entity is removed. See the warning below |
Deleting an entity removes its schema from Base44. Existing data in that
entity is not automatically deleted, but the entity will no longer be
accessible through the SDK.
See also