Skip to content

Commit fa46184

Browse files
committed
readme push
1 parent 0d45cc7 commit fa46184

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@ This is a utility application designed to aid developers in interacting with bot
55

66
## Quick start
77

8-
Install dependencies:
8+
**Install dependencies:** This application uses `pnpm` for managing dependencies. If you don't have `pnpm`, install it first by running `npm install -g pnpm`. Then run the following command to install the application's dependencies:
9+
910

1011
```bash
1112
pnpm install
1213
```
1314

14-
Configure your environment variables:
15+
**Configure your environment variables**: Make a copy of the `.env.example` file and rename it to `.env`. Then, open the `.env` file and update the environment variables as needed.
1516

1617
```bash
1718
cp .env.example .env
1819
edit .env
1920
```
2021

21-
Start the server:
22+
**Start the server**: Once you've set up your environment variables, you can start the server by running:
2223
```bash
2324
pnpm dx:next
2425
```
@@ -29,9 +30,8 @@ The OpenAPI client is used to generate a client SDK from an OpenAPI Specificatio
2930
Here's how to generate or regenerate the OpenAPI client:
3031

3132
```bash
32-
# Ensure you're in your project directory
33-
cd /path/to/your/project
33+
export POCKET_DIR=$HOME/pocket/pocket
3434

3535
# Run the openapi generator script
36-
./node_modules/.bin/openapi --input ~/pocket/pocket/rpc/v1/openapi.yaml --output ./src/utils/v1-rpc-client --name v1RPC
36+
./node_modules/.bin/openapi --input $POCKET_DIR/rpc/v1/openapi.yaml --output ./src/utils/v1-rpc-client --name v1RPC
3737
```

0 commit comments

Comments
 (0)