> 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/zh-tw/an-zhuang/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 伺服器執行個體。您可以在下方的命令章節中進一步了解這些腳本。                                                                                                                   |
| `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/fef3d32ddb8323c72a58681ceb7edf40b951f528) 頁面。
{% 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/zh-tw/an-zhuang/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.
