Skip to content

Commit d0fb54a

Browse files
authored
Merge pull request #1 from teodororo/master
🎉 Feat: add FixIt
2 parents baf9bac + b01de9c commit d0fb54a

File tree

17 files changed

+513
-22
lines changed

17 files changed

+513
-22
lines changed

.github/workflows/hugo.yaml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# Sample workflow for building and deploying a Hugo site to GitHub Pages
2+
name: Deploy Hugo site to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches:
8+
- main
9+
10+
# Allows you to run this workflow manually from the Actions tab
11+
workflow_dispatch:
12+
13+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14+
permissions:
15+
contents: read
16+
pages: write
17+
id-token: write
18+
19+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
20+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
21+
concurrency:
22+
group: "pages"
23+
cancel-in-progress: false
24+
25+
# Default to bash
26+
defaults:
27+
run:
28+
shell: bash
29+
30+
jobs:
31+
# Build job
32+
build:
33+
runs-on: ubuntu-latest
34+
env:
35+
HUGO_VERSION: 0.139.2
36+
steps:
37+
- name: Install Hugo CLI
38+
run: |
39+
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
40+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
41+
- name: Install Dart Sass Embedded
42+
run: sudo snap install dart-sass-embedded
43+
- name: Checkout
44+
uses: actions/checkout@v3
45+
with:
46+
submodules: recursive
47+
fetch-depth: 0
48+
- name: Setup Pages
49+
id: pages
50+
uses: actions/configure-pages@v3
51+
- name: Install Node.js dependencies
52+
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
53+
- name: Build with Hugo
54+
env:
55+
# For maximum backward compatibility with Hugo modules
56+
HUGO_ENVIRONMENT: production
57+
HUGO_ENV: production
58+
run: |
59+
hugo \
60+
--gc \
61+
--minify \
62+
--baseURL "${{ steps.pages.outputs.base_url }}/"
63+
- name: Upload artifact
64+
uses: actions/upload-pages-artifact@v1
65+
with:
66+
path: ./public
67+
68+
# Deployment job
69+
deploy:
70+
environment:
71+
name: github-pages
72+
url: ${{ steps.deployment.outputs.page_url }}
73+
runs-on: ubuntu-latest
74+
needs: build
75+
steps:
76+
- name: Deploy to GitHub Pages
77+
id: deployment
78+
uses: actions/deploy-pages@v2

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**/public/
2+
**/resources/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/FixIt"]
2+
path = themes/FixIt
3+
url = https://github.com/hugo-fixit/FixIt.git

.hugo_build.lock

Whitespace-only changes.

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

content/posts/about.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Sobre nós
2+
3+
O PyData é um programa educacional sem fins lucrativos idealizado pela [NumFocus](https://numfocus.org/).
4+
5+
A NumFocus financia projetos de código aberto como o [Cython](https://cython.org/), [Pandas](https://pandas.pydata.org/), [Matplotlib](https://matplotlib.org/), [NumPy](https://numpy.org/), [Julia](https://julialang.org/), entre outros. O PyData surgiu como uma forma de divulgar e promover estas e outras tecnologias relacionadas a dados.
6+
7+
Assim como as [PyLadies](https://python.org.br/pyladies/), o PyData é baseado em "capítulos", sendo cada capítulo uma cidade. Isso é, existem centenas de PyDatas ao redor do mundo. Confira:
8+
9+
![Img](https://iili.io/2c76ns4.png)
10+
11+
# Eventos
12+
13+
O PyData Manaus surgiu em 2018, na Universidade do Estado do Amazonas (UEA), e todos seus eventos foram registrados na plataforma [Meetup](https://www.meetup.com/pt-BR/pydata-manaus/events/past/), a citar:
14+
15+
- **1° Meetup:**
16+
- **Local:** HUB Tecnologia e Inovação - UEA
17+
- **Data:** 29 de janeiro de 2019, sábado
18+
- **Quantidade de palestrantes:** 5
19+
- **Alcance:** 40 pessoas
20+
- **2° Meetup:**
21+
- **Local:** SEBRAE Lab
22+
- **Data:** 4 de maio de 2019, sábado
23+
- **Quantidade de palestrantes:** 6
24+
- **Alcance:** 50 pessoas
25+
- **3° Meetup:**
26+
- **Local:** Auditório Samuel Benchimol
27+
- **Data:** 31 de agosto de 2019, sábado
28+
- **Quantidade de palestrantes:** 7
29+
- **Alcance:** 50 pessoas
30+
- **4° Meetup:**
31+
- **Local:** Online devido à pandemia Covid-19
32+
- **Data:** 2 de maio de 2020, sábado
33+
- **Quantidade de palestrantes:** 7
34+
- **Alcance:** 1.400 pessoas
35+
- **5° Meetup:**
36+
- **Local:** OCEAN Lab - UEA
37+
- **Data:** 2 de setembro de 2020, sábado
38+
- **Quantidade de palestrantes:** 5
39+
- **Alcance:** 60 pessoas
40+
- **6° Meetup:**
41+
- **Local:** Casarão de Inovação Cassina
42+
- **Data:** 4 de novembro de 2023, sábado
43+
- **Quantidade de palestrantes:** 5
44+
- **Alcance:** 50 pessoas
45+
46+
47+
Em 2024, o PyData Manaus se uniu à [Associação Python Brasil (APyB)](https://apyb.python.org.br/), uma organização sem fins lucrativos que apoia as comunidades relacionadas à linguagem Python.
48+
49+
# Integrantes da organização
50+
51+
### Gestão 2019 - 2022
52+
- [Juliany Raiol](https://github.com/julianyraiol)
53+
- [Jailson Pereira](https://github.com/jailsonpj)
54+
- [Alice Adativa](https://github.com/aliceadativa)
55+
- [Allex Lima](https://github.com/allexlima)
56+
- [Nicoli Araújo](https://github.com/nicoliaraujo)
57+
- [Miguel de Oliveira](https://github.com/migvanderlei)
58+
59+
### Gestão 2022-2025
60+
- [Lorena Anunciação](https://github.com/loreanunciacao)
61+
- [Diego de Lucena](https://github.com/Diegovisk)
62+
- [Vanessa de Souza](https://github.com/vanessadcamara)
63+
- [Giovanna Teodoro](https://github.com/teodororo)
64+
65+
Se você encontrou algum erro nesta publicação, não hesite em abrir uma issue no repositório do GitHub.

content/posts/setimo_pydata/capa.png

32.4 KB
Loading

content/posts/setimo_pydata/index.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: VII PyData Manaus
3+
subtitle:
4+
date: 2024-11-27T17:22:34-04:00
5+
draft: false
6+
author:
7+
name: PyData Manaus
8+
link: https://github.com/pydatamanaus
9+
email: pydata.manaus@gmail.com
10+
avatar: pydatamanaus
11+
keywords:
12+
license:
13+
comment: true
14+
weight: 1
15+
tags:
16+
- comunidade
17+
categories:
18+
- eventos
19+
hiddenFromHomePage: false
20+
hiddenFromSearch: false
21+
summary: Saiba tudo que vai rolar na sétima edição do PyData Manaus!
22+
resources:
23+
- name: featured-image
24+
src: capa.png
25+
- name: featured-image-preview
26+
src: capa.png
27+
toc: true
28+
math: false
29+
lightgallery: false
30+
password:
31+
message:
32+
repost:
33+
enable: false
34+
url:
35+
36+
# See details front matter: https://fixit.lruihao.cn/documentation/content-management/introduction/#front-matter
37+
---
38+
39+
# Inscrições
40+
41+
# Programação
42+
43+

0 commit comments

Comments
 (0)