{"id":33306470,"url":"https://github.com/bigint/hey","last_synced_at":"2025-11-23T15:01:01.853Z","repository":{"id":37007757,"uuid":"471728341","full_name":"bigint/hey","owner":"bigint","description":"Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿","archived":false,"fork":false,"pushed_at":"2025-11-14T16:51:19.000Z","size":58863,"stargazers_count":29517,"open_issues_count":2,"forks_count":1784,"subscribers_count":160,"default_branch":"main","last_synced_at":"2025-11-20T02:30:24.224Z","etag":null,"topics":["blockchain","crypto","dapp","graphql","hacktoberfest","lens-protocol","nextjs","react","social-media","tailwindcss","turborepo","typescript","vitest","wagmi","web3"],"latest_commit_sha":null,"homepage":"https://hey.xyz","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bigint.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":"funding.json","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":{}},"created_at":"2022-03-19T15:01:46.000Z","updated_at":"2025-11-19T22:42:03.000Z","dependencies_parsed_at":"2023-10-04T07:26:29.066Z","dependency_job_id":"e61d9521-de2e-4ddc-9bd0-2f6fc1b57911","html_url":"https://github.com/bigint/hey","commit_stats":{"total_commits":11825,"total_committers":121,"mean_commits":97.72727272727273,"dds":0.4810993657505286,"last_synced_commit":"ca741e1eca3e52892edcafb9b092ed45bcbde6c3"},"previous_names":["lensterxyz/lenster","heyverse/hey","bigint/hey"],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/bigint/hey","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigint%2Fhey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigint%2Fhey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigint%2Fhey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigint%2Fhey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bigint","download_url":"https://codeload.github.com/bigint/hey/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bigint%2Fhey/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285968540,"owners_count":27262718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-23T02:00:06.149Z","response_time":135,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["blockchain","crypto","dapp","graphql","hacktoberfest","lens-protocol","nextjs","react","social-media","tailwindcss","turborepo","typescript","vitest","wagmi","web3"],"created_at":"2025-11-18T21:00:50.987Z","updated_at":"2025-11-23T15:01:01.840Z","avatar_url":"https://github.com/bigint.png","language":"TypeScript","readme":"# Hey Monorepo\n\n## Requirements\n\nTo start working with the Hey monorepo, ensure the following tools are installed:\n\n- [Node.js](https://nodejs.org/en/download/) (v18 or higher) – the JavaScript runtime used in this project.\n- [pnpm](https://pnpm.io/installation) – the package manager used throughout this repository.\n- [Postgres App](https://postgresapp.com/) – the Postgres database used in development.\n\n## Installation\n\nThis repository uses [pnpm workspaces](https://pnpm.io/workspaces) to manage multiple packages within a monorepo structure.\n\n### Clone the Repository\n\n```bash\ngit clone git@github.com:heyverse/hey.git\n```\n\n### Install NVM and pnpm\n\nOn macOS, you can install both with Homebrew:\n\n```bash\nbrew install nvm pnpm\n```\n\n### Install Node.js\n\nUse `nvm` to install the required Node.js version:\n\n```bash\nnvm install\n```\n\n### Install Dependencies\n\nFrom the repository root, install dependencies with pnpm:\n\n```bash\npnpm install\n```\n\n### Set up Environment Variables\n\nCopy the `.env.example` file to `.env` for each package or application that requires configuration:\n\n```bash\ncp .env.example .env\n```\n\nRepeat this process for all relevant packages and applications in the monorepo.\n\n### Environment Variables\n\nThe example environment files define the following variables:\n\n#### API (`apps/api/.env.example`)\n\n- `PRIVATE_KEY` – Private key used to sign Lens requests.\n- `SHARED_SECRET` – Token for internal API authorization.\n\n### Start the Development Server\n\nTo run the application in development mode:\n\n```bash\npnpm dev\n```\n\n## Build\n\n### Build the application\n\nCompile the application:\n\n```bash\npnpm build\n```\n\n### Type-check the project\n\nValidate the codebase with the TypeScript type checker:\n\n```bash\npnpm typecheck\n```\n\n### Lint and Format Code\n\nCheck code quality and formatting with Biome:\n\n```bash\npnpm biome:check\n```\n\nAutomatically fix linting and formatting issues:\n\n```bash\npnpm biome:fix\n```\n\n### Maintenance Scripts\n\nConvenient Node.js helpers are in the `script` directory:\n\n- `node script/clean.mjs` removes all `node_modules`, `.next` directories,\n  `pnpm-lock.yaml`, and `tsconfig.tsbuildinfo` files.\n- `node script/update-dependencies.mjs` updates packages across the monorepo,\n  removes old installs and commits the changes in a new branch.\n- `node script/sort-package-json.mjs` sorts all `package.json` files in the\n  repository.\n\n## License\n\nThis project is released under the **GNU AGPL-3.0** license. See the [LICENSE](./LICENSE) file for details.\n\n🌸\n","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigint%2Fhey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbigint%2Fhey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbigint%2Fhey/lists"}