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
For PV11 hard fork compatible local devnets, use the PV11 beta release from this table or a newer beta release.
77
84
78
85
## 📦 Components
79
86
@@ -106,6 +113,8 @@ Yaci DevKit offers multiple distribution options to fit your development workflo
106
113
107
114
Download and unzip the latest docker distribution.
108
115
116
+
For protocol-specific testing, choose the Docker ZIP from the release compatibility table above.
117
+
109
118
```bash
110
119
#
111
120
# Start DevKit
@@ -115,6 +124,8 @@ Download and unzip the latest docker distribution.
115
124
#### Option 2: Yaci CLI Zip Distribution (Non-Docker)
116
125
Download and unzip the latest Yaci CLI distribution.
117
126
127
+
For protocol-specific testing, choose the CLI ZIP from the release compatibility table above.
128
+
118
129
```bash
119
130
# Start Yaci CLI and download components
120
131
./yaci-cli
@@ -123,13 +134,26 @@ Download and unzip the latest Yaci CLI distribution.
123
134
#### Option 3: NPM Distribution (CI/CD Ready)
124
135
🚀 **Perfect for CI/CD pipelines and automated testing:**
125
136
```bash
126
-
#Global installation
137
+
#Latest stable
127
138
npm install -g @bloxbean/yaci-devkit
139
+
140
+
# Latest beta
141
+
npm install -g @bloxbean/yaci-devkit@beta
142
+
143
+
# Latest preview
144
+
npm install -g @bloxbean/yaci-devkit@preview
145
+
```
146
+
147
+
Then start DevKit:
148
+
149
+
```bash
128
150
yaci-devkit up --enable-yaci-store
129
151
or
130
152
yaci-devkit up --enable-kupomios
131
153
```
132
154
155
+
Use `@beta` for the latest beta release and `@preview` for the latest preview release. To lock CI to an exact release, install with an explicit version from the compatibility table.
156
+
133
157
**CI Integration Examples:**
134
158
- ✅ **GitHub Actions** - Automated testing with DevKit
0 commit comments