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

# 2. Sæt dig ind i Toolkit

### Et kig rundt <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Nu hvor du har en lokal kopi af Toolkit'et, lad os se på repositoryets struktur ved hjælp af `ls` kommandoen.

{% code title="Kør dette" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
Det `ls -l` kommandoen viser en detaljeret lang listevisning af indholdet af en mappe og giver yderligere filoplysninger såsom tilladelser, ejerskab og størrelse.
{% endhint %}

Hvis alt blev klonet korrekt, skulle du se noget i denne stil:

```
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 konfigurationsfiler, der ejes af brugeren, findes i `config/` mappe. Denne mappe er **udelukket** fra git's versionskontrolsystem, så den ændres ikke ved opdatering af Toolkit'et.
{% endhint %}

## Repositoryets struktur

| Navn     | Beskrivelse                                                                                                                                                                                                                                                      |
| -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bin`    | Denne mappe indeholder en samling scripts, der hjælper dig med at administrere din Overleaf-serverinstans. Du kan læse mere om disse scripts i vores Commands-sektion nedenfor.                                                                                  |
| `config` | Denne mappe indeholder dine egne lokale konfigurationsfiler.                                                                                                                                                                                                     |
| `lib`    | Denne mappe indeholder basis-konfigurationsfiler, der bruges af Toolkit'et.                                                                                                                                                                                      |
| `data`   | Som standard indeholder denne mappe lagringsplaceringen for MongoDb, Redis og Overleaf. For mere information, se [Vedvarende data](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) sektionen nedenfor. |

{% hint style="warning" %}
Vi anbefaler **ikke** at ændre filer uden for `/config` mappen direkte. I stedet, hvis du har brug for at foretage ændringer, kan de laves via miljøvariabler, der er angivet enten i **config/variables.env** eller **config/overleaf.rc**.\
For eksempel, for at angive `mongo` tjenesteafbildningen, i stedet for at redigere `lib/docker-compose.mongo.yml` direkte, angiv afbildningen ved hjælp af miljøvariablen `MONGO_IMAGE` i `config/overleaf.rc`. For mere information, se [Toolkit-indstillinger](broken://pages/c41958f891448b2d1692f7319e92b0faa1756ff4) siden.
{% endhint %}

{% hint style="info" %}
Toolkit'et vil **ikke** ikke ændre data i `config/` mappen uden din tilladelse.
{% 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/da/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.
