Example Lightning App with a set of Generic Responsive Lightning Components capable of loading and interacting with data from any Salesforce Object. Components can be surfaced on Standard (record pages and Home Page) and Custom Lightning Pages. Components can be put together on Lightning Pages and communicate with each other using Lightning Standard Events.
Set up your environment. Follow the steps in the Quick Start: Lightning Web Components Trailhead project. The steps include:
If you haven't already done so, authenticate with your hub org and provide it with an alias (myhuborg in the command below):
sfdx force:auth:web:login -d -a myhuborg
Clone the sparkle-dx repository:
git clone https://github.com/rreboucas/sparkle-dx.git
cd sparkle-dx
Create a scratch org and provide it with an alias (sparkle-dx in the command below):
sfdx force:org:create -s -f config/project-scratch-def.json -a sparkle-dx
Push the app to your scratch org:
sfdx force:source:push
Assign the Recruitment permission set to the default user:
sfdx force:user:permset:assign -n Lightning_Components_Sample_Pack_Recruiting
Load sample data:
sfdx force:data:tree:import --plan sfdx-out/plan.json
Open the scratch org:
sfdx force:org:open
In App Launcher, select the Recruitment app.
This project is licensed under the BSD 3-clause license - see the LICENSE.md file for details