Ability to run dev server from git ref#348
Draft
stephanos wants to merge 1 commit into
Draft
Conversation
f40cb7e to
30443d5
Compare
145a039 to
b1ee98e
Compare
7aeffca to
fcd36ea
Compare
stephanos
added a commit
to temporalio/temporal
that referenced
this pull request
May 15, 2026
…10229) ## What Extend `common/config/config_template_embedded.yaml` with (1) SQLite option (2) option to override `rpcAddress` and/or `httpAddress` ## Why https://github.com/temporalio/omes needs to be able to start a Temporal server with sqlite and custom addresses. See temporalio/omes#348
stephanos
commented
May 15, 2026
| return filepath.Join(repoDir, "workers", target), nil | ||
| } | ||
|
|
||
| // loadVersions parses versions.env file and returns a map of version variables |
Collaborator
Author
There was a problem hiding this comment.
moved this to versions package for re-use from devserver package
f64e73f to
f82f28f
Compare
f82f28f to
28ceeab
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What was changed
Added new package
devserverwhich allows to start a local Temporal server from any git ref (SHA, tag, branch).Why?
Right now only the CLI can start a Temporal devserver, but it has a very long release cycle.
(1) Allow testing new features as soon as they land in Temporal Server without having to wait for a CLI release.
(2) Allow testing new features in Temporal Server's mixed brain suite.
Long-term this will move to the CLI, but that's a larger and later effort. In the meantime it can incubate here and unblock the aforementioned use cases.