How to Setup Visual Studio Code for Salesforce

Visual Studio Code is recommended IDE for Salesforce development. In this post, we will learn about how to setup Visual Studio Code for Salesforce development. We’ll explore the features of VS Code, configure it, and customize it to use it as a powerful tool for Salesforce Development.

1. Download and Install VsCode

Download vscode (Visual Studio Code) from here and install on your computer. Follow setup instructions will installation.

Download and Install VsCode for Salesforce

2. Install Salesforce DX CLI

To connect the VsCode with Salesforce org we need SalesforceDX CLI. Download the Salesforce CLI from here.

Operating System 
Link to Installer 
macOS 
https://sfdc.co/sfdx_cli_osx 
Windows 32-bit 
https://sfdc.co/sfdx_cli_win 
Windows 64-bit 
https://sfdc.co/sfdx_cli_win64 
Install Salesforce DX CLI

Once Salesforce CLI is installed. You can validate the same with sfdx command on command line terminal. Check this post if you want to learn more about Salesforce CLI

3. Install Salesforce Extension Pack for Visual Studio Code

We are almost there. Open your VsCode and Click on Extensions icon on left hand side or press CTRL+SHIFT+X. Then Search for “Salesforce Extension Pack” and click on install button

Install Salesforce Extension Pack for VsCode

With Salesforce Extension pack all below extension will install automatically.

  1. Apex
  2. Salesforce CLI Integration
  3. Apex Interactive Debugger
  4. Apex Replay Debugger
  5. Visualforce
  6. Aura Components
  7. Lightning Web Component

Check Top 10 Vs Code Extensions that can make your life easy for day-to-day development.

4. Create Salesforce DX Project

Congratulation. Till this step your software setup is completed. Now its time to create your first project in VsCode. To Create the project open Command Palette or press Ctrl + Shift + P.  Then type SFDX: Create Project with Manifest .

SFDX: Create Project with Manifest
SFDX: Create Project with Manifest

Then provide your project name and select the location where you want to save your project.

Create Salesforce DX Project
How to Setup Visual Studio Code for Salesforce

Till this point you will able to see blank folder structure in VsCode. Let see how we can connect our VsCode with Salesforce

5. Connect with your Salesforce Org : Authorize an Org

Our project is ready on our local machine, Its time to connect our VsCode with Salesforce. Again open Command Palette or press Ctrl + Shift + P.   This time we need to type or Select “SFDX: Authorize an Org“.

SFDX: Authorize an Org
SFDX: Authorize an Org

Then it will ask you which environment we need to connect to

Authorize an Org

In the last step you need to provide the org alias name. Then it will take you to your default browser and ask you for org credentials. If prompted to allow access, click Allow

Till this point your Salesforce org is connected with VsCode. Now its time for Development. You can also use command line interface for same.

6. Retrieve Component from Salesforce Org using VsCode

Now you want to extract all your Salesforce component in your VsCode? Open Package.xml file from Manifest folder. Then Modify your Package.xml file to add and remove component. Finally Click on Package.xml and select “SFDX: Retrieve This Source from Org” option

SFDX: Retrieve This Source from Org

SFDX: Retrieve This Source from Org

It’ll retrieve all the metadata from your org which is specified in your package.xml file

7. Deploy component using Visual Studio Code

Open any file and work on your component. If you want to learn about how to create Lightning Web Component then check this post. Now do your changes in VSCode and then select the file which you want to deploy in your org. Then Right click on VsCode and select the “SFDC: Deploy This Source to Org” option for deployment.

Deploy component with VsCode

Learn about Salesforce Code Builder The web IDE for Salesforce Application Development.

How to Setup Visual Studio Code for Salesforce Video

Learn how to set up Visual Studio Code for Salesforce and how to use vs code for creating a project with non-Scratch Org. We will also learn Execute Test Class, Execute Code, SOQL, and Debug log in VsCode.

YouTube video

If you want to learn about how to use VsCode on cloud check this post.

If you are new to Salesforce? Check our How to become a Salesforce Developer in 2023.

What Next?

FREE Salesforce Training

Summary

I hope this post helped you to understand how to set up vsCode in Salesforce. Check out the Top 10 VsCode Extensions for Salesforce to increase your productivity for Salesforce Development.

Amit Chaudhary
Amit Chaudhary

Amit Chaudhary is Salesforce Application & System Architect and working on Salesforce Platform since 2010. He is Salesforce MVP since 2017 and have 17 Salesforce Certificates.

He is a active blogger and founder of Apex Hours.

Articles: 461

18 Comments

  1. I would also like to request a video blog on ‘How to connect and work with GIT from VSCODE for SF’
    Thankful for the wonderful learning you and your team have been imparting to the SF Community.

  2. Doesn’t work.

    Whenever I want to deploy something, nothing happenes. I see the loading bar moving, but nothing happens even after minutes of waiting.

    • I hope you are already connected with Salesforce org. Are you getting any errors? You can check the quick status in salesforce deployment as well

  3. Whenever I am trying to retrieve the elements from SF Org, only static resource is retrieved and retrieve not working for other elements. There are no errors also of failed retrieve. Please help.

  4. Amit – You can add this section as well.. Some features, particularly Apex support, in Salesforce Extensions for Visual Studio Code depend on the Java Platform, Standard Edition Development Kit (JDK). It requires an installation of either JDK version 17 (Recommended), JDK version 11, or JDK version 8. If you have another version of Java installed, you need to also install JDK 17, JDK 11, or JDK 8.

  5. Hi Amit,

    I’m getting this error when I’m running pipeline

    $ openssl aes-256-cbc -d -md md5 -in assets/server.key.enc -out assets/server.key -k $SERVER_KEY_PASSWORD
    Can’t open “assets/server.key.enc” for reading, No such file or directory
    40478F36327F0000:error:80000002:system library:BIO_new_file:No such file or directory:../crypto/bio/bss_file.c:67:calling fopen(assets/server.key.enc, rb)
    40478F36327F0000:error:10000080:BIO routines:BIO_new_file:no such file:../crypto/bio/bss_file.c:75:

  6. Hi Amit

    I’m getting this error when I run pipeline

    $ openssl aes-256-cbc -d -md md5 -in assets/server.key.enc -out assets/server.key -k $SERVER_KEY_PASSWORD
    Can’t open “assets/server.key.enc” for reading, No such file or directory
    40478F36327F0000:error:80000002:system library:BIO_new_file:No such file or directory:../crypto/bio/bss_file.c:67:calling fopen(assets/server.key.enc, rb)
    40478F36327F0000:error:10000080:BIO routines:BIO_new_file:no such file:../crypto/bio/bss_file.c:75:

Leave a Reply

Your email address will not be published. Required fields are marked *