Ask Learn Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In this project, you update an existing Node.js solution. This project includes service classes for data storage and conversation that are currently marked with placeholders. In this unit, you prepare the tools needed to complete the project code.
The goal of this project is to create an application that supports AI search functionality for product data. The key tasks you need to complete are:
Before you begin the project setup, verify that you have access to the following tools and resources:
Without access to these resources, you may be unable to complete the lab.
Open Visual Studio Code
Visual Studio Code is required to complete the guided project exercises. You can install Visual Studio Code from this page.
Install Node.js
Node.js is required to run and manage JavaScript dependencies for the application you're deploying. You can download the latest version of Node here. Verify the installation by opening the terminal in Visual Studio Code and running the command node -v
Install the Azure CLI
You can install the Azure CLI by following the instructions on this page. Verify the installation by opening the terminal in Visual Studio Code and running the command az -v
Install Docker for Windows
Install the Docker extension for Visual Studio Code
You can find the extension by navigating to View > Extensions and enter "Docker" in the search bar.
Clone the following repository in Visual Studio Code:
https://github.com/MicrosoftLearning/mslearn-cosmosdb-mongodb-vcore
Once the repository is cloned, navigate to the project directory 06-guided-project.
Right-click on the 06-guided-project folder and select Open in integrated Terminal.
Install project dependencies
In the terminal, run the following command inside the project directory: npm install
In Visual Studio Code, open the terminal and enter the command:
az login
Use the following command to run the create-azure-resources.ps1 script and create the necessary Azure resources:
./create-azure-resources.ps1
When the script completes, verify that the .env file is populated with the resource information.
Now you're ready to begin the guided project exercises!
Please sign in to use this experience.
Sign in