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

# 2. Familiarízate con el kit de herramientas

### Echando un vistazo alrededor <a href="#taking-a-look-around" id="taking-a-look-around"></a>

Ahora que tienes una copia local del Toolkit, echemos un vistazo a la estructura del repositorio usando `ls` comando.

{% code title="Ejecuta esto" %}

```bash
ls -l
```

{% endcode %}

{% hint style="info" %}
La `ls -l` el comando muestra una vista detallada y extensa del contenido de un directorio, proporcionando información adicional sobre los archivos, como permisos, propietario y tamaño.
{% endhint %}

Si todo se clonó correctamente, deberías ver algo como esto:

```
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" %}
Todos los archivos de configuración propiedad del usuario se encuentran en el `config/` directorio. Este directorio es **excluido** del sistema de control de revisiones git, por lo que no se cambiará al actualizar el Toolkit.
{% endhint %}

## Distribución del repositorio

| Nombre   | Descripción                                                                                                                                                                                                                                                                                         |
| -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bin`    | Esta carpeta contiene una colección de scripts que te ayudan a gestionar tu instancia del servidor de Overleaf. Puedes leer más sobre estos scripts en nuestra sección de Comandos a continuación.                                                                                                  |
| `config` | Esta carpeta contiene tus propios archivos de configuración locales.                                                                                                                                                                                                                                |
| `lib`    | Esta carpeta contiene archivos de configuración base utilizados por el Toolkit.                                                                                                                                                                                                                     |
| `data`   | De forma predeterminada, esta carpeta contiene la ubicación de almacenamiento para MongoDb, Redis y Overleaf. Para más información, consulta [Datos persistentes](https://docs.overleaf.com/on-premises/configuration/overleaf-toolkit/files-and-locations#persistent-data) sección a continuación. |

{% hint style="warning" %}
Recomendamos **no** cambiar directamente los archivos fuera de la carpeta `/config` . En su lugar, si necesitas hacer cambios, se pueden realizar mediante variables de entorno establecidas en **config/variables.env** o **config/overleaf.rc**.\
Por ejemplo, para establecer la `mongo` imagen del servicio, en lugar de editar `lib/docker-compose.mongo.yml` directamente, establece la imagen usando la variable de entorno `MONGO_IMAGE` en `config/overleaf.rc`. Para más información, consulta la página de [configuración del Toolkit](broken://pages/54ee7804ab09c0faf0cd845b79386c48cf9a65bd) .
{% endhint %}

{% hint style="info" %}
El Toolkit **no** cambiará cualquier dato en el `config/` directorio sin su permiso.
{% 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/es/instalacion/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.
