forked from bcgov/MoH-SAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev-setup.bat
13 lines (13 loc) · 1.02 KB
/
dev-setup.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
call sfdx force:org:create -v devhub -a sat-dev -f config/project-scratch-def.json -d 7 -s
call sfdx force:source:push -u sat-dev
call sfdx force:user:permset:assign -u sat-dev -n SA_Administrator
call sfdx force:apex:execute -u sat-dev -f scripts/apex/set-current-user.apex
call sfdx force:data:bulk:upsert -u sat-dev -s Drug__c -f data/drugs.csv -i Drug_Code__c -w 5
call sfdx force:data:bulk:upsert -u sat-dev -s Account -f data/accounts.csv -i Id -w 5
call sfdx force:data:bulk:upsert -u sat-dev -s Case -f data/cases.csv -i Id -w 5
call sfdx force:apex:execute -u sat-dev -f scripts/apex/assign-cases-to-queue.apex
call sfdx force:apex:execute -u sat-dev -f scripts/apex/add-form-questions.apex
call sfdx force:data:bulk:upsert -u sat-dev -s Adjudication_Criteria__c -f data/adjudicationcriteria.csv -i Id -w 5;
call sfdx force:data:bulk:upsert -u sat-dev -s Drug_Template__c -f data/drugtemplates.csv -i Id -w 5;
call sfdx force:apex:execute -u sat-dev -f scripts/apex/assign-drug-default-queues.apex
call sfdx force:org:open -u sat-dev