-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #965 from AletheiaFact/stage
Production Release: v2.0.0
- Loading branch information
Showing
84 changed files
with
4,896 additions
and
2,786 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Bugfix | ||
title: 'Sweep: ' | ||
description: Write something like "We notice ... behavior when ... happens instead of ..."" | ||
labels: sweep | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Details | ||
description: More details about the bug | ||
placeholder: The bug might be in ... file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Feature Request | ||
title: 'Sweep: ' | ||
description: Write something like "Write an api endpoint that does "..." in the "..." file" | ||
labels: sweep | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Details | ||
description: More details for Sweep | ||
placeholder: The new endpoint should use the ... class from ... file because it contains ... logic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Refactor | ||
title: 'Sweep: ' | ||
description: Write something like "Modify the ... api endpoint to use ... version and ... framework" | ||
labels: sweep | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Details | ||
description: More details for Sweep | ||
placeholder: We are migrating this function to ... version because ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.19.0 | ||
16.19.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:14.19.0-alpine AS package | ||
FROM node:16.19.0-alpine AS package | ||
|
||
ARG NEXT_PUBLIC_UMAMI_SITE_ID | ||
ARG NEXT_PUBLIC_RECAPTCHA_SITEKEY | ||
|
@@ -31,7 +31,7 @@ RUN NEXT_PUBLIC_UMAMI_SITE_ID=$NEXT_PUBLIC_UMAMI_SITE_ID \ | |
NEXT_PUBLIC_RECAPTCHA_SITEKEY=$NEXT_PUBLIC_RECAPTCHA_SITEKEY \ | ||
yarn build | ||
|
||
FROM node:14.19.0-alpine | ||
FROM node:16.19.0-alpine | ||
|
||
LABEL maintainer="Giovanni Rossini <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"addNewSourceButton": "Add another link", | ||
"errorMessageValidURL": "Please insert a valid URL", | ||
"errorMessageNoURL": "Insert at least one source on the summary", | ||
"label": "Provide at least one link to a reliable source", | ||
"placeholder": "Paste URL", | ||
"extra": "We accept news website URLs, link to academic papers, online official documents, and social media posts created by the personality themselves." | ||
"extra": "We accept news website URLs, link to academic papers, online official documents, and social media posts created by the personality themselves.", | ||
"sourceModalHeader": "Add new source" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"title": "Are you sure you want {{warning}}?", | ||
"gobackWarning": "to go back", | ||
"okButton": "Done", | ||
"cancelButton": "Cancel" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
{ | ||
"addNewSourceButton": "Insira outro link", | ||
"errorMessageValidURL": "Por favor insira um link válido", | ||
"errorMessageNoURL": "Insira ao menos um link no sumário", | ||
"label": "Forneça ao menos um link de uma fonte confiável", | ||
"placeholder": "Cole uma URL", | ||
"extra": "Nós aceitamos links de website de notícias, links para artigos acadêmicos, documentos oficiais digitalizados e disponíveis online e postagens de mídias sociais criadas pelas próprias personalidades." | ||
"extra": "Nós aceitamos links de website de notícias, links para artigos acadêmicos, documentos oficiais digitalizados e disponíveis online e postagens de mídias sociais criadas pelas próprias personalidades.", | ||
"sourceModalHeader": "Adicione uma fonte" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"title": "Tem certeza que deseja {{warning}}?", | ||
"gobackWarning": "voltar", | ||
"okButton": "Pronto", | ||
"cancelButton": "Cancelar" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.