You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cli/get-started/configuration.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,45 @@
1
1
---
2
+
title: Configuration
3
+
description: Configure your environment variables and wallet settings
2
4
sidebar_position: 1
3
5
---
4
6
5
7
# Configuration
6
8
7
9
Before using the Lido Staking Vault CLI, you need to configure your environment variables and wallet settings. This guide covers all necessary configuration steps to get started.
-**`main`** (Recommended): Stable, tested, and production-ready releases. Use this branch for reliable operation with verified features.
25
+
-**`develop`**: Latest features and ongoing development. Choose this branch if you want access to cutting-edge functionality and are comfortable with potentially unstable features.
26
+
27
+
```bash
28
+
# For stable releases (recommended)
29
+
git checkout main
30
+
31
+
# For latest features in development
32
+
git checkout develop
33
+
```
34
+
35
+
### Install Dependencies
36
+
37
+
After cloning and selecting your branch, install dependencies:
38
+
39
+
```bash
40
+
yarn install
41
+
```
42
+
9
43
## Environment Variables
10
44
11
45
Configure your environment by creating a `.env` file in your project root:
0 commit comments