这篇文章给大家介绍Salesforce中DX学习的示例分析,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
公司主营业务:网站设计、成都做网站、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联建站是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联建站推出天峻免费做网站回馈大家。
登录到开发中心 sfdx force:auth:web:login -d -a DevHub
-a 创建别名 -d 设置为默认组织
创建文件夹 mkdir folderName
cd folderName
clonegit clone https://github.com/dreamhouseapp/dreamhouse-sfdx.git
删除scratchsfdx force:org:delete
一个scratch 配置
{ "orgName": "Dreamhouse", "edition": "Developer", "hasSampleData": "false", "settings": { "orgPreferenceSettings": { "s1DesktopEnabled": true, "selfSetPasswordInApi": true, "s1EncryptedStoragePref2": false } } }
创建Scratch Org 并设置为默认 sfdx force:org:create -s -f config/project-scratch-def.json -a dreamhouse-org
打开指定org sfdx force:org:open -u xxx
将元数据推送到Scratch sfdx force:source:push
分配权限 sfdx force:user:permset:assign -n xxxx
导入样本数据 sfdx force:data:tree:import --plan data/sample-data-plan.json
需要在sfdx中设置DevHub为默认,同时需要开启package
sfdx force:package:create --name dreamhouse --description "My Package" --packagetype Unlocked --path force-app --nonamespace --targetdevhubusername DevHub
--name is the package name. This name is an alias you can use when running subsequent packaging commands.
--path is the directory that contains the contents of the package.
--packagetype indicates which kind of package you’re creating, in this case, unlocked.
创建版本: sfdx force:package:version:create -p dreamhouse -d force-app -k test1234 --wait 10 -v DevHub
-p is the package alias that maps to the package ID.
-d is the directory that contains the contents of the package.
-k is the installation key that protects your package from being installed by unauthorized individuals.
转换成正式版本:sfdx force:package:version:promote -p dreamhouse@1.0.0-1 -v DevHub
安装到Org中:sfdx force:package:install --wait 10 --publishwait 10 --package dreamhouse@1.0.0-1 -k test1234 -r -u MyScratchOrg
关于Salesforce中DX学习的示例分析就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。