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

# 2. التعرّف على مجموعة الأدوات

### إلقاء نظرة حولنا <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/7563da25964a5161908a5d46e74781a15fe5a965) .
{% 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/ar/altthbyt/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.
