> For the complete documentation index, see [llms.txt](https://docs.flowiseai.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flowiseai.com/espanol/documentacion-oficial/configuracion/deployment/replit.md).

# Replit

***

1. Inicia sesión en [Replit](https://replit.com/~)
2. Crea un nuevo **Repl**. Selecciona **Node.js** como Template y completa con tu **Title** preferido.

<figure><img src="/files/47G0AQFphDlUOYAM8Nf9" alt="" width="551"><figcaption></figcaption></figure>

3. Después de que se cree un nuevo Repl, en la barra lateral izquierda, haz click en Secret:

<figure><img src="/files/t5Bp5bedArnY0IbmQmw9" alt="" width="219"><figcaption></figcaption></figure>

4. Crea 3 Secrets para omitir la descarga de Chromium para las librerías Puppeteer y Playwright.

<table><thead><tr><th width="403">Secrets</th><th>Value</th></tr></thead><tbody><tr><td>PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD</td><td>1</td></tr><tr><td>PUPPETEER_SKIP_DOWNLOAD</td><td>true</td></tr><tr><td>PUPPETEER_SKIP_CHROMIUM_DOWNLOAD</td><td>true</td></tr></tbody></table>

<figure><img src="/files/ufesHnjh4S6e4npPBwFS" alt="" width="535"><figcaption></figcaption></figure>

5. Ahora puedes cambiar a la pestaña Shell

<figure><img src="/files/q4i5bbf5YUcfHlwE3Zbw" alt="" width="539"><figcaption></figcaption></figure>

6. Escribe `npm install -g flowise` en la ventana de terminal Shell. Si tienes un error sobre una versión de node incompatible, usa el siguiente comando `yarn global add flowise --ignore-engines`

<figure><img src="/files/dzMQEqMZWHU5rUppUbWO" alt="" width="530"><figcaption></figcaption></figure>

7. Luego sigue con `npx flowise start`

<figure><img src="/files/rgzukaOMmnwc6Niq2YDe" alt="" width="533"><figcaption></figcaption></figure>

8. ¡Ahora deberías poder ver Flowise en Replit!

<figure><img src="/files/skKHOJPYMv42h3pK06CY" alt="" width="545"><figcaption></figcaption></figure>

9. Ahora verás una página de inicio de sesión. Simplemente inicia sesión con el nombre de usuario y contraseña que has configurado.

<figure><img src="/files/vaqUyAvgGprQ4gEOTFvy" alt=""><figcaption></figcaption></figure>


---

# 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://docs.flowiseai.com/espanol/documentacion-oficial/configuracion/deployment/replit.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.
