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
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 issue #908.
Stack position
This PR wires the shared storefront configuration from #175 into the developer workflow. It adds repo-owned setup orchestration around the existing DevHub provisioning model, without making platform-local setup pretend to replace full
dev upprovisioning.What changes
upsteps indev.ymlwith onescripts/setup_dev_workspaceinvocation.dev bootstrapto rerun Checkout Kit repo-owned setup without rerunning DevHub native provisioning.dev <platform> setup/dev <platform> upfor Android, Swift, React Native, and Web platform-local setup.dev storefront-env syncanddev storefront-env checkas the root command surface for sample storefront config.dev upprovisioning.dev checkfocused on setup validation, license headers, lint, and existing test checks instead of adding build-heavy Web/protocol steps.dev up,dev bootstrap, platform-local setup, and the root.envflow.sample/dist, excluding it from oxlint/format, and removing it inpnpm clean.Review notes
dev upstill owns full native provisioning through DevHub. Platform-local setup only runs Checkout Kit repo-owned steps for the requested platform, so it is useful after the base environment exists or when recovering from one platform's setup failure.For automation,
dev up/dev bootstrapuse--skip-optional-prompts, so missing optional Apple Pay and Customer Account API values stay blank. Developers can rundev storefront-env sync --prompt-optionalwhen they want to fill those interactively.Root
dev checkintentionally does not run Web builds, Web package verification, Web sample builds, or protocol builds; those remain available throughdev web check,dev web build,dev web verify,dev web sample build, anddev protocol check.How to test
bash -n scripts/setup_dev_workspace scripts/setup_storefront_env scripts/test_setup_storefront_envruby -ryaml -e 'YAML.load_file("dev.yml")'dev help androiddev storefront-env checkdev bootstrap --check alldev android setup --checkdev swift setup --checkdev react-native setup --checkdev web setup --checkdev web check license-headersdev web checkBefore you merge
Important
platforms/swift/README.mdand/orplatforms/android/README.md)Releasing a new Swift version?
platforms/swift/ShopifyCheckoutKit.podspecplatforms/swift/Sources/ShopifyCheckoutKit/ShopifyCheckoutKit.swiftplatforms/swift/CHANGELOG.mdplatforms/swift/README.md(major version only)Releasing a new Android version?
versionNameinplatforms/android/lib/build.gradleplatforms/android/CHANGELOG.mdplatforms/android/README.mdTip
See the Contributing documentation for the full release process per platform.