Temporal
Server Commands
Run a local Temporal server for development with automatic Web UI, in-memory database, and namespace creation. Perfect for testing workflows without cloud infrastructure.
6 commands
Pro Tips
Use '--db-filename temporal.db' to persist workflows across server restarts.
Access the Web UI at http://localhost:8233 to visualize workflow executions.
Pre-register multiple namespaces at startup: 'temporal server start-dev --namespace foo --namespace bar'.
Common Mistakes
start-dev is NOT for production use. It skips security checks and uses in-memory storage by default.
Without --db-filename, all workflow data is lost when the server stops.