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

# 2. Familiarízate con el Toolkit

### 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 el `ls` comando.

{% code title="Ejecuta esto" %}

```bash
ls -l
```

{% endcode %}

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

Si todo se ha clonado 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 está **excluido** del sistema de control de revisiones de git, por lo que no se modificará al actualizar el Toolkit.
{% endhint %}

## Estructura del repositorio

| Nombre   | Descripción                                                                                                                                                                                                                                                                                       |
| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `bin`    | Esta carpeta contiene una colección de scripts que te ayudan a gestionar tu instancia del servidor 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) la sección siguiente. |

{% hint style="warning" %}
Recomendamos **no** cambiar archivos fuera de la `/config` carpeta directamente. En su lugar, si necesitas hacer cambios, se pueden realizar mediante variables de entorno definidas en cualquiera de **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 [configuración del Toolkit](broken://pages/54ee7804ab09c0faf0cd845b79386c48cf9a65bd) página.
{% endhint %}

{% hint style="info" %}
El Toolkit no **no** modificará ningún dato en el `config/` directorio sin tu 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://overleaf-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.
