Skip to content

Commit e1e1918

Browse files
Fix alert syntax, add navigation to README, use reference links.
1 parent 58e39d2 commit e1e1918

File tree

1 file changed

+26
-11
lines changed

1 file changed

+26
-11
lines changed

content/1-hour/README.md

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Getting started with GitHub Copilot
22

3-
Built to be your AI pair programmer, [GitHub Copilot](https://github.com/features/copilot) helps you generate code and focus on what's important. Through the use of code completion you can create code from comments, and functions from just a signature. With Copilot chat you can ask questions about your codebase, create new files and update existing ones, and even perform operations which update files across your entire codebase.
3+
| [← Pets workshop selection][walkthrough-previous] | [Next: Workshop setup →][walkthrough-next] |
4+
|:-----------------------------------|------------------------------------------:|
5+
6+
Built to be your AI pair programmer, [GitHub Copilot][copilot] helps you generate code and focus on what's important. Through the use of code completion you can create code from comments, and functions from just a signature. With Copilot chat you can ask questions about your codebase, create new files and update existing ones, and even perform operations which update files across your entire codebase.
47

58
As with any tool, there are a set of skills which need to be acquired, which is the purpose of this (roughly) one hour workshop. You'll explore the most common workloads available to you by exploring and updating an existing application to add functionality.
69

@@ -15,27 +18,27 @@ The application for the workshop uses is built primarily with Python (Flask and
1518

1619
To complete this workshop, you will need the following:
1720

18-
- A [GitHub account](https://github.com/join).
19-
- Access to [GitHub Copilot](https://github.com/features/copilot) (which is available for free for individuals!)
21+
- A [GitHub account][github-account].
22+
- Access to [GitHub Copilot][copilot] (which is available for free for individuals!)
2023

2124
## Required local installation
2225

2326
You will also need the following available and installed locally:
2427

2528
### Code editor
2629

27-
- [Visual Studio Code](https://code.visualstudio.com/).
28-
- [Copilot extension installed in your IDE](https://docs.github.com/en/copilot/managing-copilot/configure-personal-settings/installing-the-github-copilot-extension-in-your-environment).
30+
- [Visual Studio Code][vscode-link].
31+
- [Copilot extension installed in your IDE][copilot-extension].
2932

3033
### Local services
3134

32-
- A recent [Node.js runtime](https://nodejs.org/en).
33-
- A recent version of [Python](https://www.python.org/).
34-
- The [git CLI](https://git-scm.com/).
35+
- A recent [Node.js runtime][nodejs-link].
36+
- A recent version of [Python][python-link].
37+
- The [git CLI][git-link].
3538
- A shell capable of running BASH commands.
3639

37-
> [!NOTE]
38-
> Linux and macOS are able to run BASH commands without additional configuration. For Windows, you will need either [Windows Subsystem for Linux (WS)](https://learn.microsoft.com/en-us/windows/wsl/about) or the BASH shell available via [git](https://git-scm.com/)
40+
> [!NOTE]
41+
> Linux and macOS are able to run BASH commands without additional configuration. For Windows, you will need either [Windows Subsystem for Linux (WS)][windows-subsystem-linux] or the BASH shell available via [git][git-link].
3942
4043
## Getting started
4144

@@ -47,4 +50,16 @@ Ready to get started? Let's go! The workshop scenario imagines you as a develope
4750
3. [Create custom instructions](./3-copilot-instructions.md) to ensure Copilot chat has additional context.
4851
4. [Add the new feature](./4-add-feature.md) to the website, and ensure it works!
4952

50-
**NEXT:** [Clone the repo and start the app](./0-setup.md)
53+
| [← Pets workshop selection][walkthrough-previous] | [Next: Workshop setup →][walkthrough-next] |
54+
|:-----------------------------------|------------------------------------------:|
55+
56+
[copilot]: https://github.com/features/copilot
57+
[copilot-extension]: https://docs.github.com/en/copilot/managing-copilot/configure-personal-settings/installing-the-github-copilot-extension-in-your-environment
58+
[git-link]: https://git-scm.com/
59+
[github-account]: https://github.com/join
60+
[nodejs-link]: https://nodejs.org/en
61+
[python-link]: https://www.python.org/
62+
[walkthrough-previous]: ../README.md
63+
[walkthrough-next]: ./0-setup.md
64+
[windows-subsystem-linux]: https://learn.microsoft.com/en-us/windows/wsl/about
65+
[vscode-link]: https://code.visualstudio.com/

0 commit comments

Comments
 (0)