readme cleanup

This commit is contained in:
Vivian Phung 2024-08-09 01:22:29 +01:00
parent 2642a3a843
commit 214dfaba8a
No known key found for this signature in database

View File

@ -1,40 +1,42 @@
# testnet-onboarding-app # testnet-onboarding-app
React app for onboarding participants to laconicd chain with Nitro/Cosmos key attestation React app for onboarding participants to laconicd chain with Nitro/Cosmos key attestation
## Setup for testnet-onboarding-app ## Setup for testnet-onboarding-app
1. Clone the repository 1. Clone the repository
``` ```zsh
git clone git@git.vdb.to:cerc-io/testnet-onboarding-app.git git clone git@git.vdb.to:cerc-io/testnet-onboarding-app.git
``` ```
2. Enter the project directory 2. Enter the project directory
``` ```zsh
cd testnet-onboarding-app cd testnet-onboarding-app
``` ```
3. Install dependencies 3. Install dependencies
``` ```zsh
yarn yarn
``` ```
4. Setup .env 4. Setup .env
- Copy and update `.env` - Copy and update `.env`
``` ```zsh
cp .env.example .env cp .env.example .env
``` ```
- In the `.env` file, add the WalletConnect project ID used in your [laconic-wallet](https://git.vdb.to/cerc-io/laconic-wallet) setup. - In the `.env` file, add the WalletConnect project ID used in your [laconic-wallet](https://git.vdb.to/cerc-io/laconic-wallet) setup.
```
```zsh
WALLET_CONNECT_PROJECT_ID=39bc93c... WALLET_CONNECT_PROJECT_ID=39bc93c...
``` ```
5. Start the application 5. Start the application
``` ```zsh
yarn start yarn start
``` ```