Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit fa41ef6

Browse files
committed
docs: translate docs/quick-start
1 parent f84c9e1 commit fa41ef6

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

docs/docs/quick-start.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
---
2-
title: Quick Start
2+
title: クイックスタート
33
---
44

5-
This quick start is intended for intermediate to advanced developers. For a gentler intro to Gatsby, [head to our tutorial](/tutorial/)!
5+
クイックスタートガイドは中上級者向けに書かれています。より易しい入門ガイドが必要であれば、[チュートリアル](/tutorial/)に進んでください!
66

7-
## Use the Gatsby CLI
7+
## Gatsby CLI の使い方
88

99
<EggheadEmbed
1010
lessonLink="https://egghead.io/lessons/gatsby-quick-start-with-gatsby-create-develop-and-build-gatsby-sites-from-the-command-line"
1111
lessonTitle="Quick Start with Gatsby: Create, Develop, and Build Gatsby Sites From the Command Line"
1212
/>
1313

14-
**Note**: this video uses `npx`, which is a tool to execute an npm package without first installing it. Running the command `npx gatsby new` is the same as running `gatsby new` after installing the gatsby-cli on your computer.
14+
**注意**: このビデオでは`npx`を利用して、npm パッケージをインストールすることなく Gatsby サイトを作成しています。`npx gatsby new`を実行することは、gatsby-cli をコンピューターにインストールしてから`gatsby new`を実行することと同じです。
1515

16-
### Install the Gatsby CLI
16+
### Gatsby CLI をインストールする
1717

1818
```shell
1919
npm install -g gatsby-cli
2020
```
2121

22-
### Create a new site
22+
### 新しいサイトを作成する
2323

2424
```shell
2525
gatsby new gatsby-site
2626
```
2727

28-
### Change directories into site folder
28+
### 生成されたディレクトリに移動する
2929

3030
```shell
3131
cd gatsby-site
3232
```
3333

34-
### Start development server
34+
### 開発サーバーを起動する
3535

3636
```shell
3737
gatsby develop
3838
```
3939

40-
Gatsby will start a hot-reloading development environment accessible by default at `localhost:8000`.
40+
Gatsby はホットリロード対応の開発環境を`localhost:8000`に立ち上げます。
4141

42-
Try editing the JavaScript pages in `src/pages`. Saved changes will live reload in the browser.
42+
`src/pages`の中にある JavaScript で書かれたページを編集してみてください。保存された変更はブラウザー上でリアルタイムに反映されます。
4343

44-
### Create a production build
44+
### プロダクションビルドを作成する
4545

4646
```shell
4747
gatsby build
4848
```
4949

50-
Gatsby will perform an optimized production build for your site, generating static HTML and per-route JavaScript code bundles.
50+
最適化されたプロダクションビルドを作成します。静的 HTML に加えて、ルートごとにバンドルされた JavaScript コードを生成します。
5151

52-
### Serve the production build locally
52+
### プロダクションビルドをローカルで確認する
5353

5454
```shell
5555
gatsby serve
5656
```
5757

58-
Gatsby starts a local HTML server for testing your built site. Remember to build your site using `gatsby build` before using this command.
58+
生成されたサイトのテスト用に、ローカルで動く Web サーバーを立ち上げます。このコマンドを使う前に、`gatsby build`でサイトをビルドしておきましょう。
5959

60-
### Access documentation for CLI commands
60+
### CLI コマンドのドキュメント
6161

62-
To see detailed documentation for the CLI commands, run `gatsby --help` in the terminal.
62+
ターミナル上で`gatsby --help`を実行すると、詳細な CLI ドキュメントを読むことができます。
6363

64-
For specific commands, run `gatsby COMMAND_NAME --help` e.g. `gatsby new --help`.
64+
特定のコマンドについて知りたい場合は、`gatsby COMMAND_NAME --help`を実行してください(例:`gatsby new --help`)。
6565

66-
For more information on the Gatsby CLI, visit the [CLI reference](/docs/gatsby-cli/) section of the docs.
66+
Gatsby CLI についてより詳しく知りたい場合は、[CLI reference](/docs/gatsby-cli/)を参照してください。

0 commit comments

Comments
 (0)