├── .github ├── ISSUE_TEMPLATE │ └── adicionar-nova-vaga.md ├── dependabot.yml └── workflows │ ├── label-issue.yml │ └── stale-issue.yml ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/adicionar-nova-vaga.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Adicionar nova vaga 3 | about: Não esqueça de seguir todas as instruções do template antes de abrir a vaga. 4 | title: "[Cidade ou Remoto] Back-end Developer Node.JS @ Nome da Empresa" 5 | 6 | --- 7 | 8 | 19 | 20 | ## Nossa empresa 21 | 22 | Exemplo: Aqui na Corporação ACME somos líderes em... 23 | 24 | ## Descrição da vaga 25 | 26 | Exemplo: Projeto XPTO em TypeScript, Express, HAPI, API REST, RabbitMQ, etc. 27 | 28 | ## Local 29 | 30 | Exemplo: Remoto ou Escritório, São Paulo - Vila Olímpia 31 | 32 | ## Requisitos 33 | 34 | **Obrigatórios:** 35 | - 3 anos de experiência com TypeScript (Framework, Core ou ambos) 36 | - 2 anos de experiência com MongoDB e Elastic Search 37 | 38 | **Desejáveis:** 39 | - conhecimentos em Apache Kafka ou Rabbit MQ 40 | - conhecimentos em Redis e MongoDB 41 | 42 | **Diferenciais:** 43 | - projetos opensource 44 | - conhecimento de PHP e Laravel ou Java e SpringBoot 45 | 46 | ## Benefícios 47 | - Plano de saúde 48 | - Seguro de vida 49 | - VR de R$ X/dia 50 | - Auxílio creche 51 | - ... 52 | 53 | **Diferenciais:** 54 | - 2 horas de almoço 55 | - monte a sua máquina como desejar 56 | - frigobar sempre cheio :P 57 | - sala de jogos 58 | - ... 59 | 60 | ## Contratação 61 | 62 | PJ a combinar 63 | 64 | ## Como se candidatar 65 | 66 | Por favor envie um email para email@email.com.br com seu CV anexado - enviar no assunto: Vaga DotNet 67 | OU acesse nosso site em https://empresasuperlegal.com.br/oportunidades/cadastro 68 | 69 | ## Tempo médio de feedbacks 70 | 71 | Costumamos enviar feedbacks em até XX dias após cada processo. 72 | E-mail para contato em caso de não haver resposta: feedbacks@empresasuperlegal.com.br 73 | 74 | ## Labels 75 | 76 | 77 | #### Alocação 78 | - Alocado 79 | - Remoto 80 | - Presencial 81 | - Híbrido 82 | 83 | #### Regime 84 | - CLT 85 | - Estágio 86 | - Freela 87 | - PJ 88 | 89 | #### Nível 90 | - Júnior 91 | - Pleno 92 | - Sênior 93 | - Especialista 94 | 95 | #### Período 96 | - Full time 97 | - Part time 98 | - Projeto 99 | 100 | #### Remuneração 101 | - R$ 1k - R$ 5k 102 | - R$ 5k - R$ 10k 103 | - R$ 10k - R$ 15k 104 | - R$ 15k - R$ 20k 105 | - R$ 20k+ 106 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.github/workflows/label-issue.yml: -------------------------------------------------------------------------------- 1 | name: Labeling new issue 2 | on: 3 | issues: 4 | types: ['opened', 'edited'] 5 | jobs: 6 | build: 7 | permissions: write-all 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: Renato66/auto-label@v3 11 | with: 12 | repo-token: ${{ secrets.GITHUB_TOKEN }} 13 | labels-not-allowed: '["Falta Informações","Request changes","stale"]' 14 | labels-synonyms: '{"pleno":["mid", "middle", "plain"],"remoto":["remote", "home-office", "home"], "hibrido":["hybrid"], "presencial":["office"]}' 15 | -------------------------------------------------------------------------------- /.github/workflows/stale-issue.yml: -------------------------------------------------------------------------------- 1 | name: "Close stale issues" 2 | on: 3 | schedule: 4 | - cron: "0 0 * * *" 5 | 6 | jobs: 7 | stale: 8 | runs-on: ubuntu-latest 9 | permissions: 10 | issues: write 11 | pull-requests: write 12 | steps: 13 | - uses: actions/stale@v9 14 | with: 15 | repo-token: ${{ secrets.GITHUB_TOKEN }} 16 | stale-issue-message: 'Esta vaga encontra-se há um bom tempo sem novas interações. Se ainda estiver aberta, faça um comentário, caso contrario, a fecharemos automaticamente em 5 dias.' 17 | days-before-stale: 60 18 | days-before-close: 5 19 | ascending: true 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Node.JS Dev 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 |
2 |
3 |