Skip to content

Commit cda7700

Browse files
committed
4/10 新歓体験会
1 parent cac8daa commit cda7700

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+2155
-90
lines changed

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
2+
presets: [require.resolve("@docusaurus/core/lib/babel/preset")],
33
};
1.01 MB
Binary file not shown.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: はじめてのWeb開発
3+
---
4+
5+
import installVscodeVideo from "./install-vscode.mp4";
6+
import createFolderVideo from "./create-folder.mp4";
7+
import openFolderVideo from "./open-folder.mp4";
8+
9+
## Visual Studio Code のインストール
10+
11+
**Visual Studio Code** (以下 VSCode) は、Microsoft 社が開発するテキストエディタです。多くの開発者に使用されています。
12+
13+
Visual Studio Code は、[公式サイト](https://code.visualstudio.com)からインストールできます。まだインストールが終わっていない場合はインストールしておきましょう。
14+
15+
<video src={installVscodeVideo} controls />
16+
17+
## プロジェクトを格納するフォルダを作成する
18+
19+
これから皆さんはたくさんのプログラムを書いていくことになります。プログラムは他のファイルと扱い方がかなり異なるので、専用のフォルダを作っておきましょう。ドキュメントフォルダの中に `Projects` という名前のフォルダを作り、その中にプロジェクトごとのフォルダを作っていくと良いです。
20+
21+
次の例では、`hello-world` の名前でプロジェクト用のフォルダを作成しています。
22+
23+
<video src={createFolderVideo} controls />
24+
25+
## Visual Studio Code でプロジェクトフォルダを開く
26+
27+
`File` メニューから `Open Folder...` をクリックして、先ほど作成したフォルダを VSCode で開きます。
28+
29+
<video src={openFolderVideo} controls />
30+
31+
:::info
32+
最初にフォルダを開いたとき、`Du you trust the authors of the files in this folder?` と聞かれるのは、インターネットからダウンロードした悪意のあるフォルダを VSCode で開いたとき、VSCode によって勝手に実行されてしまうのを防ぐためです。自分で作成したフォルダの場合は問題ありません。
33+
:::
4.99 MB
Binary file not shown.
852 KB
Binary file not shown.
356 KB
Binary file not shown.
Lines changed: 144 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)