> 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/id/instalasi/using-the-toolkit/2.-familiarize-yourself-with-the-toolkit.md).

# 2. Kenali Toolkit

### Melihat sekeliling <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Sekarang setelah Anda memiliki salinan lokal Toolkit, mari kita lihat struktur repositori menggunakan `ls` perintah.

{% code title="Jalankan ini" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
Bagian `ls -l` perintah menampilkan tampilan daftar panjang yang detail dari isi sebuah direktori, menyediakan informasi file tambahan seperti izin, kepemilikan, dan ukuran.
{% endhint %}

Jika semuanya berhasil dikloning, Anda akan melihat sesuatu seperti ini:

```
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" %}
Semua file konfigurasi milik pengguna dapat ditemukan di direktori `config/` direktori. Direktori ini adalah **dikecualikan** dari sistem kontrol revisi git, jadi tidak akan berubah saat Toolkit diperbarui.
{% endhint %}

## Tata letak repositori

| Nama     | Deskripsi                                                                                                                                                                                                                                                                  |
| -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bin`    | Folder ini berisi kumpulan skrip yang membantu Anda mengelola instans server Overleaf Anda. Anda dapat membaca lebih lanjut tentang skrip ini di bagian Perintah kami di bawah.                                                                                            |
| `config` | Folder ini berisi file konfigurasi lokal Anda sendiri.                                                                                                                                                                                                                     |
| `lib`    | Folder ini berisi file konfigurasi dasar yang digunakan oleh Toolkit.                                                                                                                                                                                                      |
| `data`   | Secara default folder ini berisi lokasi penyimpanan untuk MongoDb, Redis, dan Overleaf. Untuk informasi lebih lanjut lihat [Data persisten](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) bagian di bawah ini. |

{% hint style="warning" %}
Kami merekomendasikan **tidak** mengubah file di luar `/config` folder secara langsung. Sebaliknya, jika Anda perlu membuat perubahan, itu dapat dilakukan melalui variabel lingkungan yang diatur di salah satu **config/variables.env** atau **config/overleaf.rc**.\
Misalnya, untuk menetapkan `mongo` citra layanan, alih-alih mengedit `lib/docker-compose.mongo.yml` secara langsung, atur citra menggunakan variabel lingkungan `MONGO_IMAGE` di `config/overleaf.rc`. Untuk informasi lebih lanjut lihat [Pengaturan Toolkit](broken://pages/372d7125ad88a1954a9cf5bc63882fe3301b1503) halaman.
{% endhint %}

{% hint style="info" %}
Toolkit akan **tidak** mengubah data apa pun di dalam `config/` direktori tanpa izin Anda.
{% 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/id/instalasi/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.
