Skip to content

Commit 6220e39

Browse files
pixelead0pixelead0
andauthored
Prueba Publicando en gihub pages (#1)
* Meetup 202507 * publicar en github pages --------- Co-authored-by: pixelead0 <[email protected]>
1 parent 7c2445f commit 6220e39

File tree

5 files changed

+93
-14
lines changed

5 files changed

+93
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
with:
2525
fetch-depth: 0
2626

27-
- name: Setup Python
27+
- name: Set up Python
2828
uses: actions/setup-python@v4
2929
with:
30-
python-version: '3.11'
30+
python-version: '3.10'
3131

3232
- name: Install dependencies
3333
run: |

.gitignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,3 +213,61 @@ logs/
213213
.Trashes
214214
ehthumbs.db
215215
Thumbs.db
216+
217+
# MkDocs build output
218+
site/
219+
220+
# Python
221+
__pycache__/
222+
*.py[cod]
223+
*$py.class
224+
*.so
225+
.Python
226+
build/
227+
develop-eggs/
228+
dist/
229+
downloads/
230+
eggs/
231+
.eggs/
232+
lib/
233+
lib64/
234+
parts/
235+
sdist/
236+
var/
237+
wheels/
238+
*.egg-info/
239+
.installed.cfg
240+
*.egg
241+
MANIFEST
242+
243+
# Virtual environments
244+
.env
245+
.venv
246+
env/
247+
venv/
248+
ENV/
249+
env.bak/
250+
venv.bak/
251+
252+
# IDE
253+
.vscode/
254+
.idea/
255+
*.swp
256+
*.swo
257+
*~
258+
259+
# OS
260+
.DS_Store
261+
.DS_Store?
262+
._*
263+
.Spotlight-V100
264+
.Trashes
265+
ehthumbs.db
266+
Thumbs.db
267+
268+
# Logs
269+
*.log
270+
271+
# Temporary files
272+
*.tmp
273+
*.temp

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-cdmx.github.io

docs/meetups/2025/202507-julio.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,23 +92,23 @@ Ven a platicar de estas y otras mejores prácticas con nosotros.</p>
9292
<div class="tech-stack" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0;">
9393

9494
<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
95-
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
96-
<p style="margin: 0; font-size: 0.9rem;"></p>
95+
<h4 style="margin: 0 0 0.5rem 0; color: #3776AB;"><i class="fab fa-python"></i> Python</h4>
96+
<p style="margin: 0; font-size: 0.9rem;">Lenguaje de programación</p>
9797
</div>
9898

9999
<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
100-
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
101-
<p style="margin: 0; font-size: 0.9rem;"></p>
100+
<h4 style="margin: 0 0 0.5rem 0; color: #FF6B35;"><i class="fas fa-bolt"></i> UV</h4>
101+
<p style="margin: 0; font-size: 0.9rem;">Gestor de paquetes y entornos virtuales</p>
102102
</div>
103103

104104
<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
105-
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
106-
<p style="margin: 0; font-size: 0.9rem;"></p>
105+
<h4 style="margin: 0 0 0.5rem 0; color: #FFD43B;"><i class="fas fa-download"></i> pip</h4>
106+
<p style="margin: 0; font-size: 0.9rem;">Gestor de paquetes de Python</p>
107107
</div>
108108

109109
<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
110-
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
111-
<p style="margin: 0; font-size: 0.9rem;"></p>
110+
<h4 style="margin: 0 0 0.5rem 0; color: #28A745;"><i class="fas fa-layer-group"></i> venv</h4>
111+
<p style="margin: 0; font-size: 0.9rem;">Entornos virtuales de Python</p>
112112
</div>
113113

114114
</div>

metadata_json/meetup-202507.json

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,30 @@
2323
"twitter": null
2424
},
2525
"tech_stack": [
26-
"Python",
27-
"UV",
28-
"pip",
29-
"venv"
26+
{
27+
"name": "Python",
28+
"description": "Lenguaje de programación",
29+
"icon": "<i class=\"fab fa-python\"></i>",
30+
"color": "#3776AB"
31+
},
32+
{
33+
"name": "UV",
34+
"description": "Gestor de paquetes y entornos virtuales",
35+
"icon": "<i class=\"fas fa-bolt\"></i>",
36+
"color": "#FF6B35"
37+
},
38+
{
39+
"name": "pip",
40+
"description": "Gestor de paquetes de Python",
41+
"icon": "<i class=\"fas fa-download\"></i>",
42+
"color": "#FFD43B"
43+
},
44+
{
45+
"name": "venv",
46+
"description": "Entornos virtuales de Python",
47+
"icon": "<i class=\"fas fa-layer-group\"></i>",
48+
"color": "#28A745"
49+
}
3050
],
3151
"duration": "50 minutos"
3252
}

0 commit comments

Comments
 (0)