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

# 2. Familiarizza con il Toolkit

### Diamo un'occhiata in giro <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Ora che hai una copia locale del Toolkit, diamo un'occhiata alla struttura del repository usando il `ls` comando.

{% code title="Esegui questo" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
Il `ls -l` il comando mostra una visualizzazione dettagliata in formato lungo del contenuto di una directory, fornendo informazioni aggiuntive sui file come permessi, proprietà e dimensione.
{% endhint %}

Se tutto è stato clonato correttamente dovresti vedere qualcosa del genere:

```
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" %}
Tutti i file di configurazione di proprietà dell'utente si trovano nella `config/` directory. Questa directory è **esclusa** del sistema di controllo delle revisioni git, quindi non verrà modificata aggiornando il Toolkit.
{% endhint %}

## Struttura del repository

| Nome     | Descrizione                                                                                                                                                                                                                                                                                        |
| -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bin`    | Questa cartella contiene una raccolta di script che ti aiutano a gestire la tua istanza del server Overleaf. Puoi leggere di più su questi script nella nostra sezione Comandi qui sotto.                                                                                                          |
| `config` | Questa cartella contiene i tuoi file di configurazione locali.                                                                                                                                                                                                                                     |
| `lib`    | Questa cartella contiene i file di configurazione di base utilizzati dal Toolkit.                                                                                                                                                                                                                  |
| `data`   | Per impostazione predefinita questa cartella contiene la posizione di archiviazione per MongoDb, Redis e Overleaf. Per ulteriori informazioni vedi [Dati persistenti](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) sezione qui sotto. |

{% hint style="warning" %}
Consigliamo **non** di modificare direttamente i file al di fuori della `/config` cartella. Invece, se devi apportare modifiche, puoi farlo tramite variabili d'ambiente impostate in uno dei due **config/variables.env** o **config/overleaf.rc**.\
Ad esempio, per impostare l' `mongo` immagine del servizio, invece di modificare `lib/docker-compose.mongo.yml` direttamente, imposta l'immagine usando la variabile d'ambiente `MONGO_IMAGE` in `config/overleaf.rc`. Per ulteriori informazioni vedi la pagina [Impostazioni del Toolkit](broken://pages/945ef31f58202129922a849899f85deb4cfdd39a) .
{% endhint %}

{% hint style="info" %}
Il Toolkit farà **non** modificherà tutti i dati nella `config/` directory senza il tuo permesso.
{% 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/it/installazione/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.
