rontyahmed / platformDev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to my Course

Thank you for starting one of my courses on Pluralsight! Here's some information to help you get the configuration and code used throughout the courses installed into your own org. This repository covers the following courses

  • Salesforce Development: Fundamentals
  • Salesforce Development: Data Modeling and Management
  • Salesforce Development: Process Automation and Logic
  • Salesforce Development: User Interface

How Do You Plan to Deploy Your Changes?

Choose whether you want to use a developer org or scratch org. Choose a development model.

Configure Your Salesforce DX Project

The sfdx-project.json file contains useful configuration information for your project. See Salesforce DX Project Configuration in the Salesforce DX Developer Guide for details about this file.

Read All About It

Options for Install

Using Git

  1. Clone the repository to your computer and navigate to that folder

    git clone https://github.com/adam17amo/platformDev.git 
    
    cd platformDev
    
  2. Create a new Developer Edition org and authorize it in VS code or create a scratch org org with the alias platformDev

    sfdx force:org:create -s -f config/project-scratch-def.json -a platformDev --durationdays 30
    
  3. If you're using a Developer Edition Org to deploy the code

    sfdx force:source:deploy -p force-app/main/default
    

    If you're using a Scratch Org to deploy the code

    sfdx force:source:push
    
  4. Assign yourself the permission set

    sfdx force:user:permset:assign --permsetname Wired_Brain
    
  5. Run the commands to import the data

    cd scripts/dataSetup
    chmod 744 createSampleData.sh
    ./createSampleData.sh
    

    These commands navigate to the scripts directory, grant you access to run the script, and then run the script.

Installing Package

  1. Install this package into your org
  2. Assign yourself the Wired Brain permission set
  3. (Optional) Create some sample data for Stores, Suppliers (Accounts), and Store Supply Orders
  4. Download the code to your computer to follow along
    git clone https://github.com/adam17amo/platformDev.git 
    
    cd platformDev
    

About


Languages

Language:Apex 78.0%Language:JavaScript 15.1%Language:HTML 6.3%Language:Shell 0.6%