chore: make start-dev

feedback from: https://github.com/temporal-community/temporal-ai-agent/issues/31
This commit is contained in:
Jonathan Muszkat
2025-05-20 19:56:44 -03:00
committed by Steve Androulakis
parent e67b8a56ef
commit ea62bb6d83

View File

@@ -1,4 +1,4 @@
.PHONY: setup install run-worker run-api run-frontend run-train-api run-legacy-worker run-enterprise setup-venv check-python
.PHONY: setup install run-worker run-api run-frontend run-train-api run-legacy-worker run-enterprise setup-venv check-python run-dev
# Setup commands
setup: check-python setup-venv install
@@ -38,6 +38,14 @@ setup-temporal-mac:
brew install temporal
temporal server start-dev
# Run all development services
run-dev:
@echo "Starting all development services..."
@make run-worker & \
make run-api & \
make run-frontend & \
wait
# Help command
help:
@echo "Available commands:"
@@ -51,3 +59,4 @@ help:
@echo " make run-legacy-worker - Start the legacy worker"
@echo " make run-enterprise - Build and run the enterprise .NET worker"
@echo " make setup-temporal-mac - Install and start Temporal server on Mac"
@echo " make run-dev - Start all development services (worker, API, frontend) in parallel"