Skip to content

First Steps on your new Job as a Salesforce Developer

Published: at 12:13 PM

Great, you’ve landed @ your new Salesforce Developer gig and have your local environment ready (see referenced blog post below for local setup) … What should you do next?

If you need help getting your local development environment configured for Salesforce Development, check this blog post.

Why complete the following steps?

  1. Create a new Salesforce project locally

Open VS Code && inside your blank project folder … press ctrl + shift + p (to bring up commands) …

SFDX: Create Project with Manifest :this will scaffold a blank Salesforce project and provide you with a package.xml file

sfdx-create-project-with-manifest

  1. Select standard after running ‘SFDX: Create Project with Manifest`

standard-salesforce-project-template

  1. Locate (in manifest folder) package.xml and upate it to include additional types such as ApexClass

standard-salesforce-project-template

  1. Connect your local project to your desired Salesforce-Org Open commands again (ctrl + shift + p) and enter … SFDX: Authorize an Org

sfdx-authorize-an-org

  1. Select Sandbox or Production

sfdx-authorize-an-org

Follow the prompt && provide log-in details (on success you will land in the desired org in a new browser tab)

  1. Verify you are connected to a Salesforce Org in your VS Code project

sfdx-force-org-list

  1. Perform a Retrieve Source to bring down your Salesforce Org’s meta-data to your local project

Great, now you have backed up the crucial customizations of your Salesforce Org and can begin to do the following: