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

# 2. Sæt dig ind i Toolkit'et

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

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

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

```bash
ls -l
```

{% endcode %}

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

Hvis alt blev klonet korrekt, bør du se noget i stil med dette:

```
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-versionsstyringssystemet, så den vil ikke blive ændret ved opdatering af Toolkit.
{% 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 afsnit om kommandoer nedenfor.                                                                          |
| `config` | Denne mappe indeholder dine egne lokale konfigurationsfiler.                                                                                                                                                                                                 |
| `lib`    | Denne mappe indeholder grundlæggende konfigurationsfiler, som bruges af Toolkit.                                                                                                                                                                             |
| `data`   | Som standard indeholder denne mappe lagerplaceringen 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) afsnittet 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 foretages via miljøvariabler angivet i enten **config/variables.env** eller **config/overleaf.rc**.\
For eksempel, for at angive `mongo` serviceafbildningen, i stedet for at redigere `lib/docker-compose.mongo.yml` direkte, skal du angive 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 vil **ikke** ændre eventuelle 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://overleaf-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.
