How to deploy an app from GITHub to Dev Sandbox?
- johnsontitus
- May 7, 2020
- 1 min read
Authorize your Trailhead Playground or Developer org and provide it with an alias (mydevorg in the command below): sfdx force:auth:web:login -d -a mydevorg
Clone this repository: git clone <github url of the repository of the app>
If you are setting up a Developer Edition: go to Setup, under My Domain, register a My Domain.
Run this command in a terminal to deploy the app. sfdx force:source:deploy -u <username> -p force-app
Assign the recipes permission set to the default user. sfdx force:user:permset:assign -u <username> -n recipes
Import some sample data. sfdx force:data:tree:import -p ./data/data-plan.json
If your org isn't already open, open it now: sfdx force:org:open -u mydevorg
In App Launcher, select the app.


Comments