Skip to content

Latest commit

 

History

History
126 lines (93 loc) · 3.89 KB

File metadata and controls

126 lines (93 loc) · 3.89 KB

Prerequisites for Local Development (No Codespace)

To complete the hands-on labs in your local VS Code environment, ensure you have the following:

Required Software

Required VS Code Extensions

Optional but Recommended Extensions

Initial Setup Steps

  1. Clone the repository:

    git clone <repository-url>
    cd Copilot-Bootcamp-ForEndUsers
  2. Verify installations:

    dotnet --version  # Should show 9.0.x
    node --version    # Should show v18.x or higher
    npm --version
    git --version
  3. Open the repository in VS Code:

    code .
  4. Install recommended extensions when prompted by VS Code, or manually install the extensions listed above from the VS Code Extensions marketplace.

Running the Applications

The labs will guide you through installing dependencies and running the applications. Here are the basic commands for reference:

Backend (WrightBrothersApi)

cd WrightBrothersApi/WrightBrothersApi
dotnet run

Frontend (WrightBrothersFrontend)

cd WrightBrothersFrontend
npm run frontend

Run Both Simultaneously

cd WrightBrothersFrontend
npm run frontend-and-backend

Verification

Before starting the labs, ensure:

  • ✅ All required software is installed and accessible from the command line
  • ✅ VS Code opens without errors
  • ✅ GitHub Copilot and Copilot Chat extensions are installed and activated
  • ✅ You can run dotnet --version and see version 9.0.x
  • ✅ You can run node --version and see version 18.x or higher

You're now ready to begin Lab 1.2 and beyond!