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

# 2. Maak uzelf vertrouwd met de Toolkit

### Een kijkje nemen <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Nu je een lokale kopie van de Toolkit hebt, laten we eens kijken naar de structuur van de repository met behulp van de `ls` commando.

{% code title="Voer dit uit" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
De `ls -l` commando geeft een gedetailleerde, uitgebreide lijstweergave van de inhoud van een map en biedt aanvullende bestandsinformatie zoals rechten, eigenaarschap en grootte.
{% endhint %}

Als alles succesvol is gekloond, zou je zoiets als dit moeten zien:

```
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" %}
Alle configuratiebestanden die eigendom zijn van de gebruiker bevinden zich in de `config/` map. Deze map is **uitgesloten** van het git-revisiebeheersysteem, dus hij zal niet worden gewijzigd door de Toolkit bij te werken.
{% endhint %}

## Indeling van de repository

| Naam     | Beschrijving                                                                                                                                                                                                                                           |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `bin`    | Deze map bevat een verzameling scripts die je helpen je Overleaf-serverinstantie te beheren. Je kunt meer lezen over deze scripts in onze sectie Opdrachten hieronder.                                                                                 |
| `config` | Deze map bevat je eigen lokale configuratiebestanden.                                                                                                                                                                                                  |
| `lib`    | Deze map bevat basisconfiguratiebestanden die door de Toolkit worden gebruikt.                                                                                                                                                                         |
| `data`   | Standaard bevat deze map de opslaglocatie voor MongoDb, Redis en Overleaf. Zie voor meer informatie [Persistente gegevens](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) sectie hieronder. |

{% hint style="warning" %}
Wij raden aan **niet** bestanden buiten de `/config` map rechtstreeks te wijzigen. Als je wijzigingen moet aanbrengen, kunnen die in plaats daarvan worden gedaan via omgevingsvariabelen ingesteld in een van beide **config/variables.env** of **config/overleaf.rc**.\
Bijvoorbeeld, om het `mongo` service-image in te stellen, in plaats van `lib/docker-compose.mongo.yml` rechtstreeks te bewerken, stel de image in met de omgevingsvariabele `MONGO_IMAGE` in `config/overleaf.rc`. Zie voor meer informatie de [Toolkit-instellingen](broken://pages/eab9d0f372189ae34d283334cadb907c5d71f4b7) pagina.
{% endhint %}

{% hint style="info" %}
De Toolkit zal **niet** alle gegevens in de `config/` map wijzigen zonder je toestemming.
{% 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/nl/installatie/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.
