Skip to content

Commit

Permalink
Merge branch 'master' into pe-missing-content
Browse files Browse the repository at this point in the history
  • Loading branch information
diogotcorreia committed Nov 12, 2023
2 parents 11c02f5 + 45835d1 commit b946620
Show file tree
Hide file tree
Showing 733 changed files with 91,742 additions and 6,494 deletions.
10 changes: 8 additions & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ content/al/** @diogotcorreia
# AMS - Main maintainer Diogo Correia
content/ams/** @diogotcorreia

# Apre - Main maintainer Diogo Correia
content/apre/** @diogotcorreia
# Apre - Main maintainer Diogo Gaspar
content/apre/** @randomicecube

# ASA - Main maintainer Diogo Gaspar
content/asa/** @randomicecube
Expand All @@ -31,6 +31,9 @@ content/cg/** @diogotcorreia
# Comp - Main maintainer Diogo Correia
content/comp/** @diogotcorreia

# DER (HACS) - Main maintainer Diogo Correia
content/der/** @diogotcorreia

# ES - Main maintainer Diogo Correia
content/es/** @diogotcorreia

Expand Down Expand Up @@ -58,6 +61,9 @@ content/iac/** @diogotcorreia
content/iaed/** @Pesteves2002 @randomicecube
content/iaed/meta/* @diogotcorreia

# IEco (HACS) - Main maintainer Diogo Correia
content/ieco/** @diogotcorreia

# IEI - Main maintainer Diogo Correia
content/iei/** @diogotcorreia

Expand Down
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ cg:
- content/cg/**/*
comp:
- content/comp/**/*
der: # HACS
- content/der/**/*
emd:
- content/emd/**/*
- content/md/**/*
Expand All @@ -43,6 +45,8 @@ iac:
- content/iac/**/*
iaed:
- content/iaed/**/*
ieco: # HACS
- content/ieco/**/*
iei:
- content/iei/**/*
ipm:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0

- name: Prettify code
uses: creyD/prettier_action@v4.2
uses: creyD/prettier_action@v4.3
with:
prettier_options: --write **/*.{js,md}
only_changed: true
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@ public/
.vscode/
src/.vuepress/dist
yarn-error.log

# nix-direnv
.direnv/
.envrc

2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"bracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 100,
"proseWrap": "preserve",
Expand Down
12 changes: 12 additions & 0 deletions .puppeteerrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const { join } = require('path');

/**
* @type {import("puppeteer").Configuration}
*/
module.exports = {
// Changes the cache location for Puppeteer.
// This is because when deploying to Vercel, ~/.cache isn't cached between builds.
cacheDirectory: process.env['PUPPETEER_IN_PROJECT_DIRECTORY']
? join(__dirname, 'node_modules', '.cache-puppeteer')
: undefined,
};
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
De forma a facilitar as contribuições, é mantido um guia passo a passo com instruções
para novos membros.

Este [guia encontra-se disponível na nossa documentação](https://leic-pt.github.io/docs/).
Este [guia encontra-se disponível na nossa documentação](https://docs.leic.pt/).

## Conteúdos Não Desejados

Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ do curso de LEIC-A no Instituto Superior Técnico. Qualquer contribuição é be
## Como contribuir?

Se estás a pensar contribuir para os Resumos LEIC, fizemos um guia passo a passo só para ti!
Vai à [nossa documentação para aprenderes tudo o que precisas](https://leic-pt.github.io/docs/).
Vai à [nossa documentação para aprenderes tudo o que precisas](https://docs.leic.pt/).

Se já percebes do assunto e apenas queres instruções rápidas, segue os passos abaixo.

Expand All @@ -18,13 +18,13 @@ Abaixo encontram-se instruções para instalação em Windows e Linux.
#### Windows

1. Fazer [download do `git`](http://git-scm.com/) e instalar o executável.
2. Fazer [download do `node`](https://nodejs.org/en/) e instalar a última versão LTS (à data, 16.X LTS).
2. Fazer [download do `node`](https://nodejs.org/en/) e instalar a última versão LTS (18.X ou superior).
3. Instalar o `yarn` através da **PowerShell**, correndo o comando `npm i -g yarn`.

#### Linux
#### Linux/macOS

1. Instalar o `git` e o `node` pelo package manager da distribuição. Atenção que o `node` em Debian/Ubuntu/etc está desatualizado.
Recomendo seguir [este tutorial](https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04#option-3-installing-node-using-the-node-version-manager) para ter o Node 16 LTS.
Recomendo seguir [este tutorial](https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04#option-3-installing-node-using-the-node-version-manager) para ter o Node 18 LTS.
2. Instalar o `yarn` através do terminal, correndo o comando `npm i -g yarn`.

### Obter os ficheiros necessários
Expand Down Expand Up @@ -81,6 +81,13 @@ Antes de fazer um commit, é recomendado executar o `prettier` (se usarem um edi
yarn format
```

### Configurações Avançadas

Quando se está a configurar o _deployment_, de forma a incluir o browser nas pastas
que ficam em cache, pode ser necessário definir
a _environment variable_ `PUPPETEER_IN_PROJECT_DIRECTORY`, que guarda o browser
do Puppeteer na pasta do projeto em vez de na _home directory_.

## Parceiros

[![Powered by Vercel](./src/images/powered-by-vercel.svg)](https://vercel.com/?utm_source=leic-pt&utm_campaign=oss)
Loading

0 comments on commit b946620

Please sign in to comment.