> For the complete documentation index, see [llms.txt](https://ayakaleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ayakaleaf-pro.ayaka.space/on-premises/ja/insutru/using-the-toolkit/2.-familiarize-yourself-with-the-toolkit.md).

# 2. Toolkit に慣れる

### 周辺を見てみる <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Toolkit のローカルコピーができたので、リポジトリの構造を確認するために `ls` コマンド。

{% code title="これを実行してください" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
次の `ls -l` このコマンドは、ディレクトリの内容を詳細な一覧表示で出力し、権限、所有者、サイズなどの追加のファイル情報を提供します。
{% endhint %}

すべてが正常にクローンできていれば、次のような表示になるはずです:

```
drwxr-xr-x 3 fry fry  4096 Aug 30 14:16 bin
-rw-r--r-- 1 fry fry  6465 Aug 30 14:16 CHANGELOG.md
drwxr-xr-x 2 fry fry  4096 Sep  6 12:43 config
drwxr-xr-x 5 fry fry  4096 Aug 30 14:22 data
drwxr-xr-x 3 fry fry  4096 Aug 30 14:16 doc
drwxr-xr-x 3 fry fry  4096 Aug 30 14:16 lib
-rw-r--r-- 1 fry fry 34520 Aug 30 14:16 LICENSE
-rw-r--r-- 1 fry fry  1178 Aug 30 14:16 README.md
```

{% hint style="info" %}
ユーザー所有の設定ファイルはすべて `config/` ディレクトリにあります。このディレクトリは **除外されて** Git のバージョン管理システムから除外されているため、Toolkit を更新しても変更されません。
{% endhint %}

## リポジトリの構成

| 名前       | 説明                                                                                                                                                                                       |
| -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bin`    | このフォルダには、Overleaf サーバーインスタンスの管理を支援するスクリプト集が含まれています。これらのスクリプトの詳細は、下の Commands セクションで確認できます。                                                                                               |
| `config` | このフォルダには、ローカルの設定ファイルが含まれています。                                                                                                                                                            |
| `lib`    | このフォルダには、Toolkit で使用される基本設定ファイルが含まれています。                                                                                                                                                 |
| `data`   | 既定では、このフォルダに MongoDb、Redis、Overleaf の保存場所が含まれます。詳細は [永続データ](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) 以下のセクションを参照してください。 |

{% hint style="warning" %}
おすすめするのは **しないでください** の外部にあるファイルを変更することです `/config` フォルダを直接変更することではありません。代わりに、変更が必要な場合は、以下のいずれかで設定した環境変数を通じて行えます **config/variables.env** または **config/overleaf.rc**。\
たとえば、 `mongo` サービスイメージを設定するには、 `lib/docker-compose.mongo.yml` を直接編集する代わりに、環境変数 `MONGO_IMAGE` を `config/overleaf.rc`を使ってイメージを設定してください。詳細は [Toolkit の設定](broken://pages/921f52478de5c1877cce6db652a42bdd1171e2b7) ページ。
{% endhint %}

{% hint style="info" %}
Toolkit は **しないでください** のデータを変更します `config/` ディレクトリ内で、あなたの許可なしに。
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ayakaleaf-pro.ayaka.space/on-premises/ja/insutru/using-the-toolkit/2.-familiarize-yourself-with-the-toolkit.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
