Skip to content

Commit 12cf561

Browse files
authored
Merge pull request #16 from rmunate/main
Template Inicial [NextJS] SSG
2 parents 6d21f48 + 04feaf4 commit 12cf561

19 files changed

Lines changed: 7840 additions & 2 deletions

.github/SECURITY.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Política de Seguridad
2+
3+
## Reportar una vulnerabilidad
4+
5+
Si encuentras una vulnerabilidad de seguridad en este proyecto, por favor **no la reportes en un issue público**. En su lugar, contáctanos directamente a:
6+
7+
**colombiapython@gmail.com**
8+
9+
Incluye en tu reporte, si es posible:
10+
11+
- Descripción de la vulnerabilidad y su posible impacto
12+
- Pasos para reproducirla
13+
- Versión/commit afectado
14+
- Cualquier prueba de concepto (opcional)
15+
16+
## Qué esperar
17+
18+
- Confirmaremos la recepción de tu reporte en un plazo de 72 horas.
19+
- Te mantendremos informado sobre el progreso mientras evaluamos y corregimos el problema.
20+
- Una vez resuelto, coordinaremos contigo el momento adecuado para hacer pública la información, dando crédito a quien reportó el hallazgo si así lo desea.
21+
22+
## Alcance
23+
24+
Esta política aplica al código de este repositorio. No cubre servicios de terceros ni infraestructura externa utilizada por el proyecto.
25+
26+
Gracias por ayudar a mantener este proyecto seguro para toda la comunidad.

.github/pull_request_template.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## Descripción
2+
3+
<!-- Explica brevemente qué cambia o contiene este PR y por qué. -->
4+
5+
## Tipo de cambio
6+
7+
- [ ] Fix (corrige un bug)
8+
- [ ] Nueva funcionalidad
9+
- [ ] Cambio de estilo/diseño (UI)
10+
- [ ] Refactor (sin cambios de comportamiento)
11+
- [ ] Documentación
12+
- [ ] Otro:
13+
14+
## ¿Cómo se probó?
15+
16+
<!-- Pasos para reproducir/probar el cambio localmente. -->
17+
18+
## Capturas de pantalla (si aplica)
19+
20+
<!-- Antes / después, si hay cambios visuales. -->
21+
22+
## Checklist
23+
24+
- [ ] Probé los cambios localmente y funcionan como se espera
25+
- [ ] No rompe funcionalidad existente
26+
- [ ] Actualicé la documentación si era necesario
27+
- [ ] El código sigue las convenciones del proyecto
28+
- [ ] No incluye credenciales, tokens ni datos sensibles
29+
30+
## Issue relacionado
31+
32+
Closes #

.github/workflows/deploy.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [dev]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: "20"
28+
cache: "npm"
29+
30+
- name: Install dependencies
31+
run: npm ci
32+
33+
- name: Build
34+
run: npm run build
35+
36+
- name: Upload Pages artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
path: ./dist
40+
41+
deploy:
42+
needs: build
43+
runs-on: ubuntu-latest
44+
environment:
45+
name: github-pages
46+
url: ${{ steps.deployment.outputs.page_url }}
47+
steps:
48+
- name: Deploy to GitHub Pages
49+
id: deployment
50+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
/dist/
20+
21+
# production
22+
/build
23+
24+
# misc
25+
.DS_Store
26+
*.pem
27+
28+
# debug
29+
npm-debug.log*
30+
yarn-debug.log*
31+
yarn-error.log*
32+
.pnpm-debug.log*
33+
34+
# env files (can opt-in for committing if needed)
35+
.env*
36+
37+
# vercel
38+
.vercel
39+
40+
# typescript
41+
*.tsbuildinfo
42+
next-env.d.ts

AGENTS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!-- BEGIN:nextjs-agent-rules -->
2+
# This is NOT the Next.js you know
3+
4+
This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices.
5+
<!-- END:nextjs-agent-rules -->

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@AGENTS.md

README.md

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
1-
# web
2-
Nueva página web para la comunidad de Python Colombia
1+
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
2+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
15+
```
16+
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18+
19+
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20+
21+
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22+
23+
## Learn More
24+
25+
To learn more about Next.js, take a look at the following resources:
26+
27+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29+
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
31+
32+
## Deploy on Vercel
33+
34+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
35+
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.

0 commit comments

Comments
 (0)