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

# 2. Machen Sie sich mit dem Toolkit vertraut

### Sich umsehen <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Jetzt, da Sie eine lokale Kopie des Toolkits haben, werfen wir mithilfe von einen Blick auf die Struktur des Repositorys `ls` Befehl neu.

{% code title="Führen Sie Folgendes aus" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
Die `ls -l` Der Befehl zeigt eine detaillierte Langlistenansicht des Inhalts eines Verzeichnisses an und liefert zusätzliche Dateiinformationen wie Berechtigungen, Besitzer und Größe.
{% endhint %}

Wenn alles erfolgreich geklont wurde, sollten Sie etwa Folgendes sehen:

```
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 benutzereigenen Konfigurationsdateien befinden sich im `config/` Verzeichnis. Dieses Verzeichnis ist **ausgeschlossen** vom Git-Versionskontrollsystem, sodass es durch ein Update des Toolkits nicht geändert wird.
{% endhint %}

## Repository-Struktur

| Name     | Beschreibung                                                                                                                                                                                                                                                                  |
| -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bin`    | Dieser Ordner enthält eine Sammlung von Skripten, die Ihnen helfen, Ihre Overleaf-Serverinstanz zu verwalten. Mehr über diese Skripte erfahren Sie in unserem Abschnitt Befehle weiter unten.                                                                                 |
| `config` | Dieser Ordner enthält Ihre eigenen lokalen Konfigurationsdateien.                                                                                                                                                                                                             |
| `lib`    | Dieser Ordner enthält Basiskonfigurationsdateien, die vom Toolkit verwendet werden.                                                                                                                                                                                           |
| `data`   | Standardmäßig enthält dieser Ordner den Speicherort für MongoDb, Redis und Overleaf. Weitere Informationen finden Sie unter [Persistente Daten](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) im Abschnitt unten. |

{% hint style="warning" %}
Wir empfehlen **nicht** Dateien außerhalb des `/config` Ordners direkt zu ändern. Stattdessen können Änderungen, falls nötig, über Umgebungsvariablen vorgenommen werden, die entweder in **config/variables.env** oder **config/overleaf.rc**.\
Zum Beispiel, um das `mongo` Service-Image zu setzen, anstatt `lib/docker-compose.mongo.yml` direkt zu bearbeiten, setzen Sie das Image mithilfe der Umgebungsvariable `MONGO_IMAGE` in `config/overleaf.rc`. Weitere Informationen finden Sie auf der [Toolkit-Einstellungen](broken://pages/b972946efa2e1c842108d149bd2da2ae162e345b) Seite.
{% endhint %}

{% hint style="info" %}
Das Toolkit wird **nicht** irgendwelche Daten im `config/` Verzeichnis ohne Ihre Zustimmung ändern.
{% 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/de/installation/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.
