> For the complete documentation index, see [llms.txt](https://overleaf-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://overleaf-pro.ayaka.space/on-premises/uk/vstanovlennya/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/ca70874423ed9501da9fd58e4d616cc02f4d9df0) сторінці.
{% 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://overleaf-pro.ayaka.space/on-premises/uk/vstanovlennya/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.
