diff --git a/Makefile b/Makefile index 6c74b16..1644b83 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,16 @@ -include .env export -.PHONY: sync-event-types sync-activity-definitions test migrate sync-all \ +.PHONY: sync-event-types sync-activity-definitions sync-schedules test migrate sync-all \ dev-up dev-down railiance-up railiance-down \ start-worker start-api start-event-router help sync-activity-definitions: ## Sync ActivityDefinition files into DB uv run python -m activity_core.sync_activity_definitions +sync-schedules: ## Reconcile Temporal schedules from activity_definitions DB + uv run python -m activity_core.sync_schedules + sync-event-types: ## Sync event type YAML files into DB uv run python scripts/sync_event_types.py