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

# 2. Tutustu Toolkitiin

### Katsotaan ympärille <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Nyt kun sinulla on paikallinen kopio Toolkitista, katsotaanpa repositorion rakennetta käyttämällä `ls` komentoa.

{% code title="Suorita tämä" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
Kentän `ls -l` komento näyttää hakemiston sisällöstä yksityiskohtaisen pitkän listausnäkymän ja antaa lisätietoja tiedostoista, kuten käyttöoikeudet, omistajuuden ja koon.
{% endhint %}

Jos kaikki kloonattiin onnistuneesti, sinun pitäisi nähdä jotain tällaista:

```
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" %}
Kaikki käyttäjän omistamat määritystiedostot löytyvät `config/` hakemistosta. Tämä hakemisto on **poissuljettu** git-versionhallintajärjestelmästä, joten Toolkitin päivitys ei muuta sitä.
{% endhint %}

## Repositorion rakenne

| Nimi     | Kuvaus                                                                                                                                                                                                                                           |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `bin`    | Tämä kansio sisältää kokoelman skriptejä, jotka auttavat sinua hallitsemaan Overleaf-palvelininstanssiasi. Voit lukea näistä skripteistä lisää alla olevasta Komennot-osiosta.                                                                   |
| `config` | Tämä kansio sisältää omat paikalliset määritystiedostosi.                                                                                                                                                                                        |
| `lib`    | Tämä kansio sisältää Toolkitin käyttämät perusmääritystiedostot.                                                                                                                                                                                 |
| `data`   | Oletusarvoisesti tämä kansio sisältää MongoDb:n, Redisin ja Overleafin tallennussijainnin. Lisätietoja on kohdassa [Pysyvä data](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) alla. |

{% hint style="warning" %}
Suosittelemme **ei** muuttamaan tiedostoja suoraan `/config` kansion ulkopuolella. Jos sinun täytyy tehdä muutoksia, ne voidaan tehdä ympäristömuuttujien kautta, jotka asetetaan joko **config/variables.env** tai **config/overleaf.rc**.\
Esimerkiksi jos haluat asettaa `mongo` palvelinkuvan, älä muokkaa tiedostoa `lib/docker-compose.mongo.yml` suoraan, vaan aseta kuva käyttämällä ympäristömuuttujaa `MONGO_IMAGE` tiedostossa `config/overleaf.rc`. Lisätietoja on sivulla [Toolkitin asetukset](broken://pages/d9ef585893fbbc9b7dae21932fa5152656e38b6a) sivu.
{% endhint %}

{% hint style="info" %}
Toolkit tulee **ei** muuttamaan mitään tietoja `config/` hakemistossa ilman lupaasi.
{% 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/fi/asennus/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.
