Skip to content

Commit

Permalink
Start of git workshop
Browse files Browse the repository at this point in the history
Signed-off-by: worksofliam <[email protected]>
  • Loading branch information
worksofliam committed Jun 24, 2024
1 parent 21204d3 commit 0bc4cf8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,15 @@ declare module 'astro:content' {
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"workshop.mdx": {
id: "workshop.mdx";
"workshop/git.mdx": {
id: "workshop/git.mdx";
slug: "workshop/git";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"workshop/index.mdx": {
id: "workshop/index.mdx";
slug: "workshop";
body: string;
collection: "docs";
Expand Down
17 changes: 17 additions & 0 deletions src/content/docs/workshop/git.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: Git and IBM i workshop
template: splash
---

Most sections are made up of two parts:

* Purpose
* Tasks

# Outline

1. Requirements
2. Goals
3. Understanding local development
4. Compiling your first program
5. Initialising your git repository
2 changes: 1 addition & 1 deletion src/content/docs/workshop/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For the workshop, you need an IBM i to connect to:

The workshop steps are actually viewed inside of Visual Studio Code. Open up Visual Studio Code, press <code>F1</code> and search 'open walkthrough'. Select 'Open Walkthrough...'

![](../../assets/walkthrough1.png)
![](../../../assets/walkthrough1.png)

A list of walkthoughs will show up inside of a Quick Pick view. You should run through the walkthroughs in this order:

Expand Down

0 comments on commit 0bc4cf8

Please sign in to comment.