All Projects → AletheiaFact → aletheia

AletheiaFact / aletheia

Licence: GPL-3.0 license
https://aletheiafact.org a Crowd-sourced fact checking platform.

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to aletheia

captain-fact
📚 Documentation, wiki and community discussions
Stars: ✭ 59 (+63.89%)
Mutual labels:  fact-checking
WikibaseImport
Import entities from another Wikibase instance (e.g. Wikidata)
Stars: ✭ 25 (-30.56%)
Mutual labels:  wikidata
scholia
Wikidata-based scholarly profiles
Stars: ✭ 166 (+361.11%)
Mutual labels:  wikidata
wikidata-qrank
Ranking signals for Wikidata
Stars: ✭ 31 (-13.89%)
Mutual labels:  wikidata
doubanIMDb
IMDb + Rotten Tomatoes + Wikipedia on Douban Movie
Stars: ✭ 93 (+158.33%)
Mutual labels:  wikidata
wdumper
Tool for generating filtered Wikidata RDF exports
Stars: ✭ 25 (-30.56%)
Mutual labels:  wikidata
wikirepo
Python based Wikidata framework for easy dataframe extraction
Stars: ✭ 33 (-8.33%)
Mutual labels:  wikidata
wikidata-corpus
Train Wikidata with word2vec for word embedding tasks
Stars: ✭ 109 (+202.78%)
Mutual labels:  wikidata
entity-fishing
A machine learning tool for fishing entities
Stars: ✭ 176 (+388.89%)
Mutual labels:  wikidata
ann
A repository for brainstorming and prototyping ideas related to the eLifeSprint project Annotate them all (https://sprint.elifesciences.org/annotate-them-all/)
Stars: ✭ 13 (-63.89%)
Mutual labels:  wikidata
database-of-embassies
Database of embassies and consulates. Download as CSV, no registration, public domain. Powered by Wikidata.
Stars: ✭ 33 (-8.33%)
Mutual labels:  wikidata
ordia
Wikidata lexemes presentations
Stars: ✭ 21 (-41.67%)
Mutual labels:  wikidata
transparencia-dados-abertos-brasil
A survey of Brazilian states' and municipalities' transparency and open data portals, as well as institutional websites, obtained from several public data sources. 🇧🇷 Levantamento de portais estaduais e municipais de transparência e dados abertos, bem como os portais institucionais, obtido a partir de diversas fontes públicas de dados.
Stars: ✭ 46 (+27.78%)
Mutual labels:  wikidata
EMNLP2020
This is official Pytorch code and datasets of the paper "Where Are the Facts? Searching for Fact-checked Information to Alleviate the Spread of Fake News", EMNLP 2020.
Stars: ✭ 55 (+52.78%)
Mutual labels:  fact-checking
wikidata-ontology-explorer
small website to explore ontologies on Wikidata
Stars: ✭ 16 (-55.56%)
Mutual labels:  wikidata
wikibot
Some MediaWiki bot examples including wikipedia, wikidata using MediaWiki module of CeJS library. 採用 CeJS MediaWiki 自動化作業用程式庫來製作 MediaWiki (維基百科/維基數據) 機器人的範例。
Stars: ✭ 26 (-27.78%)
Mutual labels:  wikidata
lc-wikidata
Library Carpentry Wikidata
Stars: ✭ 17 (-52.78%)
Mutual labels:  wikidata
opendata
Open data of Cofacts collaborative fact-checking database
Stars: ✭ 35 (-2.78%)
Mutual labels:  fact-checking
Zero-shot-Fact-Verification
Codes for ACL-IJCNLP 2021 Paper "Zero-shot Fact Verification by Claim Generation"
Stars: ✭ 39 (+8.33%)
Mutual labels:  fact-checking
wikiapi
JavaScript MediaWiki API for node.js
Stars: ✭ 28 (-22.22%)
Mutual labels:  wikidata

Aletheia

Plataforma de análise de discursos de personalidades públicas e combate a Fake News.

Instalação

  • Fork this repo and clone it locally:
    git clone https://github.com/<your-username>/aletheia
    cd aletheia
  • Startup Mongo DB via Docker:
    docker-compose up -d
  • Install packages:
    yarn install
  • To run in dev mode
    yarn dev
  • Access http://localhost:3000 in your browser.

Development DB

  • Run seeder:
    yarn seed

Build to production

  • The build step should be run as follow:
yarn build

Configuring Ory

Taking What You Need:

  • Create an account and a project on https://console.ory.sh/login.
  • Copy the SDK Configuration url and save it.
  • Scroll down in the same page and create a Personal Access Tokens, copy the acess token that gonna show up on the bottom of your screen and save it.
  • Go to Identity Schema and click on Customize Identity Schema then change the actual schema to the code below and click Update after the change:
{
  "$id": "https://schemas.ory.sh/presets/kratos/identity.email.schema.json",
  "title": "Person",
  "type": "object",
  "properties": {
    "traits": {
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "format": "email",
          "title": "E-Mail",
          "ory.sh/kratos": {
            "credentials": {
              "password": {
                "identifier": true
              },
              "webauthn": {
                "identifier": true
              },
              "totp": {
                "account_name": true
              }
            },
            "recovery": {
              "via": "email"
            },
            "verification": {
              "via": "email"
            }
          },
          "maxLength": 320
        },
        "user_id": {
          "type": "string"
        }
      },
      "required": [
        "email",
        "user_id"
      ],
      "additionalProperties": false
    }
  }
}
  • Go to SDK Configuration url that you saved and add /schemas in the end of the url then copy the first id on the page and save it.

Making The Changes On Your Code:

  • First you gonna have to change the authentication_type: to ory on your config.yaml and config.seed.yaml.
  • Now take SDK Configuration url and paste on url: in both pages config.yaml, config.seed.yaml and on ORY_SDK_URL= in your .env too.
  • Now Paste the acess token that you saved on access_token: in your config.yaml and congig.seed.yaml.
  • Do the same as above but now with the id that you saved and paste it on schema_id: .
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].