├── .github └── ISSUE_TEMPLATE │ └── adiciona-evento.md ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/adiciona-evento.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Adiciona evento 3 | about: Template para criar eventos 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Título**: 11 | 12 | **Data**: 13 | 14 | **Local**: 15 | 16 | **Descrição (breve)**: 17 | 18 | **Logotipo do evento**: 19 | 20 | **Valor**: 21 | 22 | **Mais informações**: 23 | 24 | **Transmissão ao vivo**: 25 | 26 | **O conteúdo será gravado**: 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 QA Brasil 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. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Eventos

2 |

:date: Lista de eventos, meetups, encontros e qualquer tipo de aglomeração de frontend.

3 | 4 | 5 | ## Como funciona 6 | 7 | Se você tem algum evento (seja participante ou mesmo criador) pode [adicionar aqui](https://github.com/qa-brasil/eventos/issues/new) 8 | 9 | ## Template 10 | 11 | Pra facilitar a adição de um evento, criamos um template básico pra nos enviar. 12 | 13 | 1. Abra uma [issue](https://github.com/qa-brasil/eventos/issues/new); 14 | 2. Coloque as seguintes informações: 15 | 16 | --- 17 | 18 | **Título**: [Belo Horizonte] Testing Dojo Uai 19 | 20 | **Data**: 04/02/2016 19h30 - 21h 21 | 22 | **Local**: Avenida Getúlio Vargas, 1000 23 | 24 | **Descrição (breve)**: Evento para frontends discutirem sobre assuntos bacanas 25 | 26 | **Valor**: Gratuito 27 | 28 | **Mais informações**: http://link-para-o-evento.com.br 29 | * * * 30 | 31 | Aguarde a aprovação! 32 | 33 | 34 | ## Licença 35 | 36 | [MIT](LICENSE.md) © QA Brasil 37 | 38 | ## Repositórios da QA Brasil 39 | 40 | - [Eventos](https://github.com/qa-brasil/eventos) 41 | - [Vagas](https://github.com/qa-brasil/vagas) 42 | 43 | 44 | ## Agradecimento 45 | 46 | Especial para a comunidade [Front-End BR](https://github.com/frontendbr/) que nos inspirou, e essa página é um fork deles :) 47 | --------------------------------------------------------------------------------