{"id":13406112,"url":"https://github.com/lies-exposed/lies.exposed","last_synced_at":"2026-03-15T18:01:45.373Z","repository":{"id":37099085,"uuid":"221712251","full_name":"lies-exposed/lies.exposed","owner":"lies-exposed","description":"A chronological tracking of lies perpetrated against humanity.","archived":false,"fork":false,"pushed_at":"2026-02-10T13:51:43.000Z","size":4138943,"stargazers_count":30,"open_issues_count":51,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-10T18:04:24.572Z","etag":null,"topics":["collective-knowledge","docker","fp-ts","impact","journalism","society","typescript"],"latest_commit_sha":null,"homepage":"https://lies.exposed","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lies-exposed.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":["ascariandrea"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://www.paypal.com/paypalme/ascariandrea"]}},"created_at":"2019-11-14T14:08:23.000Z","updated_at":"2026-02-09T20:14:05.000Z","dependencies_parsed_at":"2025-06-10T19:32:40.557Z","dependency_job_id":"62fa5fb8-0548-49cf-a270-ef7392e8b748","html_url":"https://github.com/lies-exposed/lies.exposed","commit_stats":null,"previous_names":[],"tags_count":162,"template":false,"template_full_name":null,"purl":"pkg:github/lies-exposed/lies.exposed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lies-exposed%2Flies.exposed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lies-exposed%2Flies.exposed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lies-exposed%2Flies.exposed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lies-exposed%2Flies.exposed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lies-exposed","download_url":"https://codeload.github.com/lies-exposed/lies.exposed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lies-exposed%2Flies.exposed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29487797,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T19:29:10.908Z","status":"ssl_error","status_checked_at":"2026-02-15T19:29:10.419Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["collective-knowledge","docker","fp-ts","impact","journalism","society","typescript"],"created_at":"2024-07-30T19:02:21.379Z","updated_at":"2026-03-15T18:01:45.367Z","avatar_url":"https://github.com/lies-exposed.png","language":"TypeScript","funding_links":["https://github.com/sponsors/ascariandrea","https://www.paypal.com/paypalme/ascariandrea"],"categories":["TypeScript"],"sub_categories":[],"readme":"# lies.exposed\n\n\u003cimg src=\"./services/web/public/logo192.png\" height=\"100\" /\u003e\n\n![GitHub issues](https://img.shields.io/github/issues/lies-exposed/lies.exposed)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/lies-exposed/lies.exposed)\n\n![GitHub Workflow Pull Request Status](https://img.shields.io/github/actions/workflow/status/lies-exposed/lies.exposed/pull-request.yml?label=Pull%20Request)\n![GitHub Workflow Release Please Status](https://img.shields.io/github/actions/workflow/status/lies-exposed/lies.exposed/release-please.yml?branch=main\u0026label=Release)\n\n---\n\n## Project Structure\n\nThe project is built using `pnpm workspaces` and divided in `packages` and `services`.\n\n### Packages\n\nPackages contains all the common code used in `services`.\n\n- [@liexp/core](./packages/@liexp/core/README.md) contains all the core modules\n- [@liexp/shared](./packages/@liexp/shared/README.md) contains domain specific definitions for `models` and `endpoints`\n- [@liexp/test](./packages/@liexp/test/README.md) contains some test utils\n- [@liexp/ui](./packages/@liexp/ui/README.md) contains all `ui` components\n\n### Services\n\nThe `services` are the deployable projects:\n\n- [admin](./services/admin/README.md)\n- [api](./services/api/README.md)\n- [storybook](./services/storybook/README.md)\n- [web](./services/web/README.md)\n\n### Develop\n\nThe local development require some modules to be installed on your machine:\n\n- node\n- pnpm\n- docker\n- docker compose\n\nThe easiest way to run the project is by using `docker compose`.\nThe [compose.yml](./compose.yml) contains all the definitions to run the needed services.\n\nIf you want to start developing with `docker compose`:\n\n```sh\ndocker compose build # build base image\ndocker compose up -d db # starts db in background\ndocker compose up api web admin data # starts api, web, admin and data services\n```\n\n**N.B.: you need to run `pnpm api watch` in another shell to make the api container to trigger restart event**\n\n### Local HTTPS Development\n\nServices run behind an nginx reverse proxy on `*.liexp.dev`. To avoid browser\nSSL warnings you need a locally-trusted self-signed wildcard certificate.\n\n**Prerequisites:** `openssl` and (Linux only) `certutil` from `nss-tools` /\n`libnss3-tools`.\n\n```sh\n# Generate certificate and trust it in Chrome, Firefox, and system CA store\n./scripts/dev-ssl-certificate.sh\n```\n\nThe script:\n- Generates `_data/certs/liexp.dev.crt` and `_data/certs/liexp.dev.key`\n- **macOS**: adds the cert to the system Keychain (trusted by Chrome/Safari)\n- **Linux**: adds the cert to `~/.pki/nssdb` (Chrome), all Firefox profiles, and\n  the system CA store via `update-ca-trust` / `update-ca-certificates`\n\nAfter running, reload nginx so it picks up the new certificate:\n\n```sh\ndocker compose -f compose.reverse-proxy.yml up -d reverseproxy.dev\n```\n\n\u003e **Note (Linux/Chrome):** restart Chrome after running the script for the\n\u003e change to take effect.\n\n### Build\n\n```sh\npnpm build\n```\n\n### Run with docker\n\nBuild the images first with\n\n```sh\n# build `base`, `api` and `web` image\n./scripts/docker-build.sh\n```\n\n```sh\n# start docker compose for `deploy/compose.yml`\n./scripts/docker-deploy-test.sh\n```\n\nhttps://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/local-management/create-local-tunnel/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flies-exposed%2Flies.exposed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flies-exposed%2Flies.exposed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flies-exposed%2Flies.exposed/lists"}