From 194addda23afaa6204690c32e49189f58ff57c62 Mon Sep 17 00:00:00 2001 From: Kris Urbas <605420+krzysu@users.noreply.github.com> Date: Tue, 14 May 2024 14:25:42 +0200 Subject: [PATCH] fix: lens-next-app - improve readme with getting started steps --- examples/lens-next-app/README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/examples/lens-next-app/README.md b/examples/lens-next-app/README.md index 4dc5f5872..53377fe36 100644 --- a/examples/lens-next-app/README.md +++ b/examples/lens-next-app/README.md @@ -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 @@ -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!