Skip to content

Configure Your Development Environment

Basile edited this page Feb 4, 2020 · 2 revisions

Install Prerequisites

If you already have Node.js and Visual Studio Code, make sure they are updated.

  1. Install the latest version of Node.js here.
  2. Install the latest version of Visual Studio Code here.

Install Package Dependencies

After installing Node.js and Visual Studio Code, you are ready to install the necessary packages.

  1. Open the terminal in Visual Studio Code by pressing Ctrl + ~.
  2. Navigate to the project directory using cd.
  3. Navigate to the front-end folder using cd.
  4. Execute npm install in the terminal to install all front-end package dependencies.
  5. Navigate to the back-end folder using cd.
  6. Execute npm install in the terminal to install all back-end package dependencies.

Clone this wiki locally