Skip to content

Fix/typos #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 02-building-the-weather-app-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

1. Create a Basic Layout

- Open the Copilot **Chat View** (`Ctrl+Alt+I` or `Cmd+Alt+I`)
- Open the Copilot **Chat View** (`Ctrl+Alt+I` or `Ctrl+Cmd+I`)
- Prompt Copilot with a **workspace** query like the following:

```md
Expand All @@ -39,7 +39,7 @@
- Add the API key:

```env
REACT_APP_WEATHER_API_KEY=your_api_key_here
VITE_WEATHER_API_KEY=your_api_key_here
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

REACT_APP_* variables in .env files are only accessible in react apps created with Create React App (CRA). Given the tutorial suggests to initialise the repo with Vite, the variables have to start with the VITE_* convention to be accessible

```

3. Fetch Weather Data
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ By the end of this workshop, participants will:
## Interacting with GitHub Copilot
Throughout the lab tasks, you will need to interact with Copilot. There are several methods of interacting, including:
* Inline Chat (`Ctrl+I` or `Cmd+I`)
* Chat View (`Ctrl+Alt+I` or `Cmd+Alt+I`)
* Chat View (`Ctrl+Alt+I` or `Ctrl+Cmd+I`)
* Inline suggestion (code completion)

It is recommended that you try each method as you progress through this lab, as each method has unique strengths. While we often suggest a particular method of interaction, that may not be the only way to complete a lab task, so you're invited to try other methods too.
Expand Down