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: about 1 month ago
JSON representation

Find out which people have World ID verified on Lens

Lists

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

```