Skip to content

Commit 36282ab

Browse files
committed
feat: initial commit
0 parents  commit 36282ab

File tree

146 files changed

+19406
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+19406
-0
lines changed

.eslintignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts
37+
38+
# asdf
39+
/.tool-versions

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next", "prettier"]
3+
}

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: nsdonato
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Agregar nuevo recurso
3+
about: Sugerí un recurso para este proyecto
4+
title: "[NEW \U0001F195] - Agregar recurso"
5+
labels: bug, pedido
6+
assignees: nsdonato
7+
---
8+
9+
**Por favor escribí la información necesaria del recurso para poder sumarla:**
10+
11+
Links:
12+
13+
- Web, Redes sociales (de ser necesario)
14+
- ⚠️ Si es una extensión, poner la web (o si no tiene web, el repositorio) y el link a la extensión en el marketplace
15+
16+
Svg del recurso (opcional pero ideal):
17+
18+
- subir el svg al issue
19+
20+
Video (opcional):
21+
22+
- 🚨 Por el momento solo videos en español. Link al video de la persona explicando sobre el recurso, ej si es una extensión, como se usa.
23+
24+
**De ser necesario, sumar contexto adicional**
25+
Añade aquí cualquier otro contexto o capturas de pantalla sobre la solicitud de función.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Agregar nuevo video para recurso
3+
about: Sugerí un video para un recurso especifico
4+
title: "[VIDEO \U0001F4F9] - Agregar video para recurso"
5+
labels: video
6+
assignees: nsdonato
7+
---
8+
9+
**Por favor indica el recurso para el que pedís el video**
10+
Los videos realizados están a cargo de Noe - [vamoacodear](https:www.twitter.com/vamoacodear), son en español y pueden demorar. Si existe algún video en español que momentameante pueda suplir el pedido, se agregará.
11+
12+
**De ser necesario, agregar contexto adicional**
13+
Añade aquí cualquier otro contexto o capturas de pantalla sobre la solicitud de función.
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Reporte de bug
3+
about: Crear un reporte de bug para ayudarnos a mejorar
4+
title: "[BUG \U0001F41E] - Descripción"
5+
labels: bug
6+
assignees: nsdonato
7+
---
8+
9+
**Describe el bug**
10+
Añadí una descripción clara y concisa de lo que es el bug.
11+
12+
**Para reproducir**
13+
Pasos para reproducir el comportamiento:
14+
15+
1. Ir a '...'
16+
2. Haga clic en '....'
17+
3. 3. Desplácese hasta "....
18+
4. Ver error
19+
20+
\*\*Comportamiento esperado
21+
Una descripción clara y concisa de lo que esperaba que ocurriera.
22+
23+
**Capturas de pantalla**
24+
Si procede, añada capturas de pantalla para ayudar a explicar su problema.
25+
26+
**Escritorio (complete la siguiente información):**
27+
28+
- SISTEMA OPERATIVO: [ej. iOS]
29+
- Navegador [p.ej. chrome, safari]
30+
- Versión [ej. 22]
31+
32+
**Smartphone (por favor, complete la siguiente información):**
33+
34+
- Dispositivo: [p. ej. iPhone6]
35+
- SISTEMA OPERATIVO: [p. ej. iOS8.1]
36+
- Navegador [p.ej. stock browser, safari]
37+
- Versión [por ejemplo, 22]
38+
39+
\*\*Contexto adicional
40+
Añade aquí cualquier otro contexto sobre el problema.

.github/pull_request_template.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!--
2+
Bienvenidx, si llegaste hasta aqui significa que vas a hacer un pull request
3+
Esta plantilla esta diseñada para organizar mejor nuestras ideas en el momento
4+
de realizar una Pull Request.
5+
-->
6+
7+
# RecursosTech PR Template
8+
9+
## Descripcion ✏️
10+
11+
<!-- Descripcion del pull request, por favor explica brevemente de que trata este Pull Request -->
12+
13+
## Cambios visuales 🎨
14+
15+
<!-- Si agregaste una opción o una opción de menu, captura la pantalla y pegala acá, así vemos que quedó bien 🚀 -->
16+
17+
## Como testear? 🐛
18+
19+
<!--OPCIONAL -->
20+
<!-- Como podemos testear estos cambios? -->
21+
22+
<!-- Hey vos>
23+
<!-- Muchas gracias por tu tiempo ✨ y por contribuir a RecursosTech ♥️ -->
24+
<!-- Noe @vamoacodear>

.github/workflows/ci.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Use Node.js
12+
uses: actions/setup-node@v3
13+
with:
14+
node-version: 20
15+
- run: npm ci
16+
- run: npm run build --if-present
17+
18+
- name: Run linters
19+
uses: wearerequired/lint-action@v2
20+
with:
21+
eslint: true
22+
prettier: false
23+
24+
tsc:
25+
needs: [lint]
26+
name: Typecheck 🧐
27+
runs-on: ubuntu-latest
28+
29+
steps:
30+
- uses: actions/checkout@v4
31+
- name: Use Node.js
32+
uses: actions/setup-node@v3
33+
with:
34+
node-version: 20
35+
- run: npm ci
36+
- run: npm run build --if-present
37+
- run: npm run tsc
38+
39+
test:
40+
needs: [tsc]
41+
name: Test 🧪
42+
runs-on: ubuntu-latest
43+
44+
steps:
45+
- uses: actions/checkout@v4
46+
- name: Use Node.js
47+
uses: actions/setup-node@v3
48+
with:
49+
node-version: 20
50+
- run: npm ci
51+
- run: npm run build --if-present
52+
- run: npm run test

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts
37+
38+
# asdf
39+
/.tool-versions

.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx --no -- commitlint --edit "${1}"

.husky/pre-commit

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npm run tsc
5+
npx lint-staged

.husky/pre-push

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npm run test

.lintstagedrc.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const path = require('path')
2+
3+
const buildEslintCommand = filenames =>
4+
`next lint --fix --file ${filenames
5+
.map(f => path.relative(process.cwd(), f))
6+
.join(' --file ')}`
7+
8+
module.exports = {
9+
'*.{js,jsx,ts,tsx}': [buildEslintCommand],
10+
}

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20.10.0

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
coverage
2+
.agregar-nuevo-recurso.md
3+
CONTRIBUTING.md
4+
.github
5+
dist
6+
node_modules
7+
.next
8+
build

.prettierrc

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"plugins": ["@trivago/prettier-plugin-sort-imports"],
3+
"importOrder": [
4+
"^./polyfills$",
5+
"^react$",
6+
"<THIRD_PARTY_MODULES>",
7+
"^@/(.*)$",
8+
"^[./].*(?<!\\.(c|le|sc)ss)$",
9+
"\\.(c|le|sc)ss$"
10+
],
11+
"importOrderSeparation": true,
12+
"importOrderSortSpecifiers": true,
13+
"importOrderCaseInsensitive": true,
14+
"arrowParens": "avoid",
15+
"bracketSameLine": true,
16+
"bracketSpacing": true,
17+
"jsxSingleQuote": true,
18+
"semi": false,
19+
"singleQuote": true,
20+
"tabWidth": 2,
21+
"trailingComma": "es5"
22+
}

.vscode/extensions.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"recommendations": [
3+
"streetsidesoftware.code-spell-checker",
4+
"dbaeumer.vscode-eslint",
5+
"esbenp.prettier-vscode",
6+
"formulahendry.auto-rename-tag",
7+
"steoates.autoimport",
8+
"vivaxy.vscode-conventional-commits",
9+
"bradlc.vscode-tailwindcss"
10+
]
11+
}

.vscode/settings.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"cSpell.language": "en",
3+
"editor.defaultFormatter": "esbenp.prettier-vscode",
4+
"cSpell.words": [
5+
"contribuir",
6+
"js",
7+
"json",
8+
"yaml",
9+
"yml",
10+
"txt",
11+
"cson",
12+
"md",
13+
"mdx"
14+
],
15+
"[json]": {
16+
"editor.defaultFormatter": "esbenp.prettier-vscode"
17+
},
18+
"[mdx]": {
19+
"editor.defaultFormatter": "unifiedjs.vscode-mdx"
20+
}
21+
}

CONTRIBUTING.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Como contribuir a Recursos Tech
2+
3+
Gracias por interesarte en contribuir en Recursos Tech! 🫶🏽
4+
5+
Te dejo una guia de como podes hacerlo 👇🏻
6+
7+
## Pasos para hacer tu aportación
8+
9+
Antes de enviar un Pull Request, considera las siguientes guías:
10+
11+
- Clona el repositorio.
12+
- Crea una nueva branch: `git checkout -b my-branch main`
13+
- Hace tus cambios.
14+
- Commitea tu código con un buen mensaje de commit [usando "Conventional Commits"](#conventional-commits).
15+
- Hacé push de tu branch a GitHub: `git push origin my-branch`
16+
- Crea un Pull Request
17+
18+
> Si no estás seguro de que tu PR está listo, abrilo como un [draft](https://github.blog/2019-02-14-introducing-draft-pull-requests/) para que quede claro para el mantenedor.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Noelia Donato
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)