sfdx plugin for importing/exporting orgs using a Sfdx Auth Url
This is a convenient wrapper for sfdx force:org:display
and sfdx force:auth:sfdxurl:store
.
Note: pbcopy/pbpaste is available on MacOS only. However you can copy/paste manually of course.
-
Authorizing a DevHub in CI environments
Locally export the Sfdx Auth Url and save the content of your clipboard as an environment variable named
SFDX_AUTH_URL_DEVHUB
on your CI service.npx sfdx-plugin-auth-url auth-url:export -u devhub | pbcopy
Add the following to your build script
npx sfdx-plugin-auth-url auth-url:import -d -a devhub "${SFDX_AUTH_URL_DEVHUB}"
-
Quickly sharing orgs with colleagues
npx sfdx-plugin-auth-url auth-url:export -u myorg | pbcopy
Send your colleague the content of your clipboard. Then your colleague can import it using
npx sfdx-plugin-auth-url auth-url:import -a myorg "$(pbpaste)"