-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/1-4_fmt-to-log
- Loading branch information
Showing
58 changed files
with
3,711 additions
and
555 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type { DefaultTheme } from 'vitepress' | ||
import { sidebarItems } from './sidebar' | ||
|
||
export const chapter4SidebarItems: DefaultTheme.SidebarItem[] = [ | ||
{ | ||
text: '第四部', | ||
items: [{ text: 'はじめに', link: '/chapter4/0_index' }, ...sidebarItems] | ||
} | ||
] |
14 changes: 14 additions & 0 deletions
14
docs/.vitepress/sidebarConfigs/chapters/chapter4/sidebar.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import type { DefaultTheme } from 'vitepress' | ||
export const sidebarItems: DefaultTheme.SidebarItem[] = [ | ||
{ text: 'Docs', link: '/chapter4/docs' }, | ||
{ text: '1. IP Address', link: '/chapter4/1_ip_address' }, | ||
{ text: '2. NAT', link: '/chapter4/2_nat' }, | ||
{ text: '3. Routing 1', link: '/chapter4/3_routing_1' }, | ||
{ text: '4. Routing 2', link: '/chapter4/4_routing_2' }, | ||
{ text: '5. DHCP', link: '/chapter4/5_dhcp' }, | ||
{ text: '6. IP Tunneling', link: '/chapter4/6_ip_tunneling' }, | ||
{ text: '7. BGP', link: '/chapter4/7_bgp' }, | ||
{ text: '8. DNS 1', link: '/chapter4/8_dns_1' }, | ||
{ text: '9. DNS 2', link: '/chapter4/9_dns_2' }, | ||
{ text: '10. DNS 3', link: '/chapter4/10_dns_3' } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ Windows: `Winキー + Shift + S`を押すと、矩形選択でスクリーンシ | |
|
||
## WSL の導入(Windows を使っている人のみ) | ||
|
||
すでに WSL をインストールしている方はこの手順は飛ばして大丈夫です。 | ||
すでに WSL をインストールしている方はこの手順を飛ばして大丈夫です。 | ||
|
||
WSL は Windows 上で Linux を動かすための仕組みで、`Windows Subsystem for Linux`の略です。 | ||
|
||
|
@@ -34,7 +34,7 @@ Homebrew とは、様々なアプリケーションをインストールしや | |
|
||
## VSCode の導入 | ||
|
||
すでに VSCode をインストールしている方はこの手順は飛ばして大丈夫です。 | ||
すでに VSCode をインストールしている方はこの手順を飛ばして大丈夫です。 | ||
|
||
以下のサイトから使用している OS に合った VSCode のインストーラーをダウンロードして、それを実行してインストールしてください。 | ||
|
||
|
@@ -66,7 +66,7 @@ https://golang.org/doc/install | |
|
||
Mac のタブを選択し、ダウンロードページに飛んで自分のアーキテクチャの pkg をダウンロード=>インストーラ起動で設定完了です。 | ||
|
||
もしくはHomebrewがすでにインストールされている人は、`brew install [email protected]`を実行することでも導入できます。 | ||
もしくは Homebrew がすでにインストールされている人は、`brew install [email protected]`を実行することでも導入できます。 | ||
|
||
::: info | ||
M1/M2 Mac の人は Apple macOS (ARM64) を、Intel Mac の人は Apple macOS (x86-64) を選択してください。 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.