Skip to content

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSintimbrean committed Nov 20, 2023
1 parent d87c1e9 commit 262ab5b
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 29 deletions.
24 changes: 13 additions & 11 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
7 changes: 3 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

**Is your feature request related to a problem? Please describe.**
Expand Down
7 changes: 3 additions & 4 deletions web/src/content/docs/guia-de-uso/docker/instalacion.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,20 @@ cp .env.example .env
### Configurar variables de entorno

La única variable de entorno **obligatoria** para configurar es `RPC_URL`, esta es la API de acceso a la blockchain de Polygon.
Las demás pueden dejarse con los valores por defecto (*no recomendable para producción*).
Las demás pueden dejarse con los valores por defecto (_no recomendable para producción_).

Puedes conseguirla una propia en (Alchemy)[https://www.alchemy.com/]

Debería tener un formato similar a este:

```
RPC_URL=https://polygon-mainnet.g.alchemy.com/v2/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
```


## Levantar el entorno
## Levantar el entorno

Para levantar el entorno, utilizado `docker compose`

```bash
docker compose up --build -d
```

1 change: 1 addition & 0 deletions web/src/content/docs/guia-de-uso/docker/pre-requisitos.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Pre-requisitos
description: Requisitos necesarios para la puesta en marcha del indexador.
---

## Instalación de Git

Para instalar Git en tu sistema operativo, sigue las instrucciones de la [documentación oficial](https://git-scm.com/downloads).
Expand Down
8 changes: 2 additions & 6 deletions web/src/content/docs/guia-de-uso/local/instalacion.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ git clone https://github.com/Racks-Community/MrCryptoIndexer.git
cd MrCryptoIndexer
```


## Instalar dependencias


```bash
pnpm install
```
Expand All @@ -30,11 +28,12 @@ cp .env.example .env

Las únicas variable de entorno **obligatoria** para configurar es `RPC_URL`, esta es la API de acceso a la blockchain de Polygon, y `DATABASE_URL` a la base de datos de PostgreSQL.

Las demás pueden dejarse con los valores por defecto (*no recomendable para producción*).
Las demás pueden dejarse con los valores por defecto (_no recomendable para producción_).

Para la variable `RPC_URL`, puedes conseguir una propia en (Alchemy)[https://www.alchemy.com/]

Debería tener un formato similar a este:

```
DATABASE_URL=postgresql://{usario}:{constraseña}@localhost:5432/{nombre de la base de datos}
RPC_URL=https://polygon-mainnet.g.alchemy.com/v2/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Expand All @@ -57,6 +56,3 @@ pnpm db:seed
```bash
pnpm start
```



11 changes: 7 additions & 4 deletions web/src/content/docs/guia-de-uso/local/pre-requisitos.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Pre-requisitos
description: Requisitos necesarios para la puesta en marcha del indexador.
---

## Instalar Node.js y pnpm
## Instalar Node.js y pnpm

El indexador utiliza [pnpm](https://pnpm.io/). Necesitas installar **Node.js v18 o superior** y **pnpm v8 o superior**.

Expand Down Expand Up @@ -31,13 +31,16 @@ psql --version

Comprueba que tengas el servicio de PostgreSQL en ejecución:

- En Linux:
- En Linux:

```bash
sudo systemctl status postgresql
```

- En Mac:
- En Mac:

```bash
brew services list
```
y buscar `postgresql` en la lista para ver si está en ejecución.

y buscar `postgresql` en la lista para ver si está en ejecución.

0 comments on commit 262ab5b

Please sign in to comment.