Skip to content

Commit

Permalink
fix: lens-next-app - improve readme with getting started steps (#939)
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysu authored May 15, 2024
1 parent 1f34162 commit 047eaa0
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions examples/lens-next-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next

## Getting Started

First, run the development server:
Start by renaming the `.env.example` file to `.env` and then populate it with the necessary values:

- `NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID` - This is the Project ID for WalletConnect. You can create a free Project ID at [WalletConnect Cloud](https://cloud.walletconnect.com/sign-in).

After setting up the environment variables, launch the development server:

```bash
npm run dev
Expand All @@ -14,6 +18,8 @@ pnpm dev
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
Once the server is running, open http://localhost:3000 in your browser to view the result.

You can begin editing the page by modifying `app/page.tsx`. The page will automatically update as you make changes to the file.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
Happy coding!

0 comments on commit 047eaa0

Please sign in to comment.