-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into carousel-boxers
- Loading branch information
Showing
361 changed files
with
3,770 additions
and
1,574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Sacar de https://dev.twitch.tv | ||
TWITCH_CLIENT_ID="tu-client-id" | ||
TWITCH_CLIENT_SECRET="tu-secret-id" | ||
|
||
AUTH_SECRET="9dad45384af9565cec9d9e8c34c988bb40c745ed2f8052bbdc734a2b85658e87" # generar un hash aleatorio | ||
AUTH_TRUST_HOST=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
name: Reportar problema | ||
description: Reporta un problema | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "# Pre-requisitos" | ||
- type: checkboxes | ||
id: pre-requisitos | ||
attributes: | ||
label: Señala los requisitos cumplidos | ||
description: | | ||
Asegúrate de cumplir estos requisitos antes de reportar un problema | ||
options: | ||
- label: Estoy corriendo la última versión. | ||
required: true | ||
- label: | | ||
He revisado si ya hay un issue creado con características similares. | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: "# Comportamiento" | ||
- type: textarea | ||
id: comportamiento-esperado | ||
attributes: | ||
label: Comportamiento esperado | ||
description: Describe el comportamiento esperado de la issue | ||
placeholder: Esta feature debería hacer ... | ||
- type: textarea | ||
id: comportamiento-actual | ||
attributes: | ||
label: Comportamiento actual | ||
description: Describe el comportamiento actual de la issue | ||
placeholder: Esta feature hace ... | ||
- type: markdown | ||
attributes: | ||
value: "# Información" | ||
- type: textarea | ||
id: informacion-bug | ||
attributes: | ||
label: Información del bug | ||
description: Aporta información sobre el bug | ||
placeholder: Este bug ocurre cuando ... | ||
- type: textarea | ||
id: pasos-reproducir | ||
attributes: | ||
label: Pasos para reproducirlo | ||
description: Pasos necesarios para reproducir el bug | ||
placeholder: | | ||
1. Paso1 | ||
2. Paso2 | ||
- type: markdown | ||
attributes: | ||
value: "# Contexto" | ||
- type: dropdown | ||
id: navegadores | ||
attributes: | ||
label: ¿En qué navegadores encuentras el problema? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- Opera | ||
- Todos los navegadores | ||
- type: input | ||
id: version-navegador | ||
attributes: | ||
label: Versión del navegador | ||
description: Versión del navegador en el cuál encuentras el problema | ||
placeholder: Chrome v124.0.6367.92 ... | ||
- type: dropdown | ||
id: sistema-operativo | ||
attributes: | ||
label: Sistema operativo | ||
description: Sistema operativo en el cuál encuentras el problema | ||
multiple: true | ||
options: | ||
- Windows | ||
- MacOS | ||
- Linux | ||
- Android | ||
- Todos los sistemas | ||
- type: markdown | ||
attributes: | ||
value: "# Información adicional" | ||
- type: textarea | ||
attributes: | ||
label: Añade información adicional si fuese necesario | ||
description: Imágenes, link del código, fragmento de código ... | ||
placeholder: | | ||
```typescript | ||
const variable = "..." | ||
``` | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Propuesta de mejora | ||
description: Sugerir una mejora o feature para el proyecto | ||
title: "[Feat]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "## Pre-requisitos" | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Antes de sugerir una feature, busca [features existentes](https://github.com/midudev/la-velada-web-oficial/issues) | ||
- type: textarea | ||
attributes: | ||
label: Descripción | ||
description: Descripción de la feature que quieres que se añada | ||
placeholder: | | ||
Estaría bien que el proyecto tuviese ... | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
npx lint-staged | ||
#!/bin/bash | ||
|
||
# Verificar el sistema operativo | ||
if [ "$OSTYPE" = "msys" ] || [ "$OSTYPE" = "win32" ]; then | ||
# Si es Windows, ejecutar npx.cmd lint-staged | ||
npx.cmd lint-staged | ||
else | ||
# Si no es Windows, intentar ejecutar npx lint-staged | ||
if command -v npx 2> /dev/null; then | ||
npx lint-staged | ||
else | ||
echo "El comando 'npx' no está disponible. Por favor, instale 'npx' para continuar." | ||
exit 1 | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18 | ||
v18.20.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ yarn.lock | |
node_modules/ | ||
dist/ | ||
public/ | ||
src/utils/serviceWorker.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.