2024-07-11 06:31:10 +00:00
|
|
|
# testnet-onboarding-app
|
2024-07-16 09:01:47 +00:00
|
|
|
React app for onboarding participants to laconicd chain with Nitro/Cosmos key attestation
|
2024-04-29 04:04:25 +00:00
|
|
|
|
2024-07-11 06:31:10 +00:00
|
|
|
## Setup for testnet-onboarding-app
|
2024-04-29 04:04:25 +00:00
|
|
|
|
|
|
|
1. Clone the repository
|
|
|
|
|
|
|
|
```
|
2024-07-22 14:53:45 +00:00
|
|
|
git clone git@git.vdb.to:cerc-io/testnet-onboarding-app.git
|
2024-04-29 04:04:25 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
2. Enter the project directory
|
|
|
|
|
|
|
|
```
|
2024-07-11 06:31:10 +00:00
|
|
|
cd testnet-onboarding-app
|
2024-04-29 04:04:25 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
3. Install dependencies
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn
|
|
|
|
```
|
|
|
|
|
|
|
|
4. Setup .env
|
|
|
|
- Copy and update `.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.
|
|
|
|
```
|
|
|
|
WALLET_CONNECT_PROJECT_ID=39bc93c...
|
|
|
|
```
|
|
|
|
|
|
|
|
5. Start the application
|
|
|
|
|
|
|
|
```
|
|
|
|
yarn start
|
|
|
|
```
|