Add repo setup orchestration commands#176
Open
kyle-schellen wants to merge 1 commit into
Open
Conversation
This was referenced May 20, 2026
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced May 20, 2026
d2be551 to
e86923e
Compare
aef7cdc to
ddc5f30
Compare
e86923e to
06f9f45
Compare
ddc5f30 to
3f74a95
Compare
06f9f45 to
0e9dc0f
Compare
3f74a95 to
ee67e70
Compare
0e9dc0f to
8ebd042
Compare
ee67e70 to
5be06e0
Compare
716abfe to
733c680
Compare
5be06e0 to
59ad611
Compare
733c680 to
f8b72c3
Compare
59ad611 to
0fd134c
Compare
f8b72c3 to
5d6ef3d
Compare
0fd134c to
4b6d89e
Compare
5d6ef3d to
575a93a
Compare
4b6d89e to
3946d12
Compare
3946d12 to
92de1c2
Compare
575a93a to
94d978b
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.

Depends on #175.
Closes shop/issues-checkout-kit#908.
This PR wires the shared storefront configuration into the developer workflow. It adds
scripts/setup_dev_workspace, uses it fromdev up, exposesdev bootstrap, and adds platform-scopeddev <platform> setup/dev <platform> upcommands for Android, Swift, React Native, and Web.The setup commands intentionally run repo-owned setup only; full native/tool provisioning still belongs to root
dev up. Root aggregates remain focused on Android, Swift, React Native, and Web, while protocol stays available throughdev protocol check.Verified with YAML parsing, shell syntax checks,
scripts/test_setup_storefront_env, anddev helpchecks for setup, storefront-env, platform checks, and thernalias.How to test
Note: There is a follow-up opportunity to move the setup/config parsing logic out of ad hoc Bash and into a small reusable dev utilities area for this monorepo. In particular, helpers for reading
.env/.xcconfigvalues across packages could make these setup scripts easier to maintain and compose. This PR keeps the current command surface focused and tested, and leaves that implementation cleanup for a separate review. Issue created here.