Skip to main content

Set Up the Project on Your Local Machine

Follow Along with Trail Together

Want to follow along with an expert as you work through this step? Take a look at this video, part of the Trail Together series.

(This clip starts at the 4:47 minute mark, in case you want to rewind and watch the beginning of the step again.)

Introduction

Our next goal is to set up the developer project that we use to modify our application. We start by cloning the repository.

Download a Project from GitHub

If you're a Windows user, first install git for Windows tooling. This tool helps you run git from the command line.

  1. Open a new Terminal (Mac) or Command Prompt (Windows) window and use the following command to create a unique directory to do your work in:
    mkdir my_sf_project
    cd my_sf_project
  2. Next, use this command to clone the app repository:
    git clone https://github.com/trailheadapps/dreamhouse-lwc.git
  3. Next, open the directory:
    cd dreamhouse-lwc
    Cloning dreamhouse-lwc project from GitHub

Cloning the repository pulls all the source code into your local file system. But before you start editing, you first create your own branch. This is a best practice as defined by GitHub Flow, because it helps ensure your main branch is a clean and production-ready version of your code.

Create a Branch for Your Project

  1. In your command window, create a new branch to do your work in:
    git checkout -b my_branch
    Now that you're working in your own branch, it's easy to submit updates to your team later on.
  2. In Salesforce DX, we provide a comprehensive set of capabilities through our command-line interface. In the command terminal window, see the available commands by running:
    sf --help

Now that we've set up our project, our next step is to create our scratch org.

We won't check any of your setup. Click Verify Step to go to the next step in the project.

계속해서 무료로 학습하세요!
계속 진행하려면 계정을 가입하세요.
얻을 수 있는 이점
  • 커리어 목표에 대한 개인화된 권장 사항 제공받기
  • 실습 과제 및 퀴즈를 통해 스킬 연습
  • 진행 상황을 추적하고 고용주에게 공유
  • 멘토십과 커리어 기회에 연결