Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AdamSchinzel/worldcoin-on-lens
Find out which people have World ID verified on Lens
https://github.com/AdamSchinzel/worldcoin-on-lens
graphql lens-protocol nextjs typescript worldcoin
Last synced: 3 months ago
JSON representation
Find out which people have World ID verified on Lens
- Host: GitHub
- URL: https://github.com/AdamSchinzel/worldcoin-on-lens
- Owner: AdamSchinzel
- Created: 2023-05-15T09:25:06.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-06-15T19:44:10.000Z (over 1 year ago)
- Last Synced: 2024-05-16T07:32:32.973Z (6 months ago)
- Topics: graphql, lens-protocol, nextjs, typescript, worldcoin
- Language: TypeScript
- Homepage: https://worldcoin-on-lens.vercel.app
- Size: 244 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-lens-protocol - worldcoin-on-lens - Find out which people have World ID verified on Lens. (Development / Libraries & Tools)
README
# Worldcoin on Lens
Find out which people have World ID verified on Lens.
## Documentation
Project is based on `Next.js`, a production-ready React Framework. Check out the [documentation](https://nextjs.org/docs) for more information.
## Prerequisites
- `node`
- `pnpm`## Usage
Before you start make sure that you have all ENV variables set. You can find all required variables in `.env.example` file.
**Firstly, install all necessary dependencies:**
```sh
pnpm install
```**To start a development server:**
```sh
pnpm run dev
```**To build the app for production:**
```sh
pnpm run build
pnpm start
```## Folder structure
```bash
worldcoin-on-lens/
├── config
├── public
└── src
├── components
│ ├── elements
│ ├── layouts
│ ├── modules
│ └── templates
├── graphql
├── hooks
├── pages
├── services
├── types
└── utils```