-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathjustfile
More file actions
351 lines (288 loc) · 10.7 KB
/
justfile
File metadata and controls
351 lines (288 loc) · 10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
set dotenv-load
set quiet
alias b := build
alias t := unit-test
alias ti := integration-test
alias f := fmt
alias r := run
# ******************************************************************************
# Build & Install
# ******************************************************************************
# Default: check, test, build
[group('build')]
default: fmt unit-test build
# Build all workspace packages
[group('build')]
build:
cargo build --workspace
# Build the lib crate
[group('build')]
build-lib:
cargo build -p kora-lib
# Build the CLI tool
[group('build')]
build-cli:
cargo build -p kora-cli
# Build specific binary
[group('build')]
build-bin bin='kora':
cargo build --bin {{bin}}
# Install kora binary
[group('build')]
install:
cargo install --path crates/cli --bin kora
# Remove build artifacts
[group('build')]
[confirm('Delete all build artifacts?')]
clean:
cargo clean
# ******************************************************************************
# Format
# ******************************************************************************
# Check formatting
[group('fmt')]
check:
cargo fmt --all -- --check
cargo clippy -- -D warnings
cd sdks/ts && pnpm format:check && pnpm type-check
# Format with auto-fix
[group('fmt')]
fmt:
cargo clippy --fix --allow-dirty -- -D warnings
cargo fmt --all
cd sdks/ts && pnpm format
# Format TypeScript Files
fmt-ts:
cd sdks/ts && pnpm format
# ******************************************************************************
# Testing
# ******************************************************************************
# Run unit tests
[group('test')]
[no-exit-message]
unit-test:
-cargo test --lib --workspace --exclude tests --quiet
# Run all integration tests (use --verbose, --force-refresh, --filter X as needed)
[group('test')]
integration-test *args: build _ensure-transfer-hook
cargo run -p tests --bin test_runner -- {{args}}
# Run TypeScript SDK unit tests
[group('test')]
[no-exit-message]
unit-test-ts: build
-cd sdks/ts && pnpm test:unit
# Run all TypeScript SDK tests (unit + integration)
[group('test')]
[no-exit-message]
test-ts: build _ensure-transfer-hook
cd sdks/ts && pnpm test:unit
cargo run -p tests --bin test_runner -- --filter typescript_basic
cargo run -p tests --bin test_runner -- --filter typescript_auth
cargo run -p tests --bin test_runner -- --filter typescript_free
# Run all tests (unit + TypeScript + integration)
[group('test')]
test: build unit-test unit-test-ts integration-test
# Build transfer hook test program
[group('test')]
build-transfer-hook:
cd tests/src/common/transfer-hook-example && chmod +x build.sh && ./build.sh
[private]
_ensure-transfer-hook:
#!/usr/bin/env bash
if [ ! -f "tests/src/common/transfer-hook-example/target/deploy/transfer_hook_example.so" ]; then
echo "Building transfer hook program..."
cd tests/src/common/transfer-hook-example && chmod +x build.sh && ./build.sh
fi
# ******************************************************************************
# Run Services
# ******************************************************************************
# Start RPC server
[group('run')]
run config='kora.toml' rpc='http://127.0.0.1:8899':
cargo run -p kora-cli --bin kora -- --config {{config}} --rpc-url {{rpc}} rpc start --signers-config tests/src/common/fixtures/signers.toml
# Run Kora in Docker (no metrics)
[group('run')]
run-docker:
docker compose down
docker compose build --no-cache kora
docker compose up
# Run metrics stack (Prometheus + Grafana)
[group('run')]
run-metrics: _update-metrics-config
cd crates/lib/src/metrics && docker compose -f docker-compose.metrics.yml down
cd crates/lib/src/metrics && docker compose -f docker-compose.metrics.yml up
[private]
_update-metrics-config:
cargo run -p kora-lib --bin update-config
# ******************************************************************************
# TypeScript SDK
# ******************************************************************************
# Install TypeScript SDK dependencies
[group('sdk')]
install-ts-sdk:
cd sdks/ts && pnpm install
# Build TypeScript SDK
[group('sdk')]
build-ts-sdk:
cd sdks/ts && pnpm build
# Format TypeScript SDK
[group('sdk')]
format-ts-sdk:
cd sdks/ts && pnpm format
# Generate TypeScript client from OpenAPI
[group('sdk')]
gen-ts-client: openapi
docker run --rm -v "{{justfile_directory()}}:/local" openapitools/openapi-generator-cli generate \
-i /local/crates/lib/src/rpc_server/openapi/spec/combined_api.json \
-g typescript-fetch \
-o /local/generated/typescript-client \
--additional-properties=supportsES6=true,npmName=kora-client,npmVersion=0.1.0
# ******************************************************************************
# Documentation & Coverage
# ******************************************************************************
# Generate OpenAPI documentation
[group('docs')]
openapi:
cargo run -p kora-cli --bin kora --features docs -- openapi -o openapi.json
# Generate HTML coverage report
[group('docs')]
coverage: _ensure-coverage-tools
mkdir -p coverage
cargo llvm-cov clean --workspace
cargo llvm-cov --lib --html --output-dir coverage/html
@echo "Coverage report: coverage/html/index.html"
# Clean coverage artifacts
[group('docs')]
coverage-clean:
rm -rf coverage/
cargo llvm-cov clean --workspace
[private]
_ensure-coverage-tools:
#!/usr/bin/env bash
if ! command -v cargo-llvm-cov &>/dev/null; then
echo "Installing cargo-llvm-cov..."
cargo install cargo-llvm-cov
fi
if ! rustup component list --installed | grep -q llvm-tools-preview; then
echo "Installing llvm-tools-preview..."
rustup component add llvm-tools-preview
fi
# ******************************************************************************
# Utilities
# ******************************************************************************
# Generate a random key (API key or HMAC secret)
[group('util')]
generate-key:
@openssl rand -hex 32
# ******************************************************************************
# Release
# ******************************************************************************
# Show branch workflow guidance
[group('release')]
branch-info:
@echo "Branch Workflow:"
@echo " main → Audited code only, stable releases"
@echo " release/X.Y.Z → Pre-audit features for version X.Y.Z"
@echo " hotfix/* → Hotfixes from main"
@echo ""
@echo "Releasing:"
@echo " Stable: checkout main, run 'just release'"
@echo " Beta: checkout release/X.Y.Z, run 'just release'"
@echo " Hotfix: run 'just hotfix' (branches from main)"
# Prepare a new release (run from main for stable, release/X.Y.Z for beta)
[group('release')]
[confirm('Start release process?')]
release:
#!/usr/bin/env bash
set -euo pipefail
if [ -n "$(git status --porcelain)" ]; then
echo "Error: Working directory not clean"
exit 1
fi
command -v cargo-set-version &>/dev/null || { echo "Install cargo-edit: cargo install cargo-edit"; exit 1; }
command -v git-cliff &>/dev/null || { echo "Install git-cliff: cargo install git-cliff"; exit 1; }
current=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[] | select(.name == "kora-lib") | .version')
echo "Current version: $current"
read -p "New version: " version
[ -z "$version" ] && { echo "Version required"; exit 1; }
echo "Updating to $version..."
cargo set-version --workspace "$version"
# Update kora-lib version in workspace.dependencies
sed -i.bak "s/kora-lib = { path = \"crates\/lib\", version = \"[^\"]*\" }/kora-lib = { path = \"crates\/lib\", version = \"$version\" }/" Cargo.toml
rm -f Cargo.toml.bak
echo "Generating CHANGELOG..."
last_tag=$(git tag -l "v*" --sort=-version:refname | head -1)
if [ -z "$last_tag" ]; then
git-cliff $(git rev-list --max-parents=0 HEAD)..HEAD --tag "v$version" --config .github/cliff.toml --output CHANGELOG.md --strip all
elif [ -f CHANGELOG.md ]; then
git-cliff "$last_tag"..HEAD --tag "v$version" --config .github/cliff.toml --strip all > CHANGELOG.new.md
cat CHANGELOG.md >> CHANGELOG.new.md
mv CHANGELOG.new.md CHANGELOG.md
else
git-cliff "$last_tag"..HEAD --tag "v$version" --config .github/cliff.toml --output CHANGELOG.md --strip all
fi
git add Cargo.toml Cargo.lock CHANGELOG.md crates/*/Cargo.toml
echo ""
echo "Ready! Next steps:"
echo " git commit -m 'chore: release v$version'"
echo " git push origin HEAD"
echo " Create PR → merge → trigger 'Publish Rust Crates' workflow"
# Start a hotfix branch from main (main is always audited/stable)
[group('release')]
hotfix name='':
#!/usr/bin/env bash
set -euo pipefail
if [ -z "{{name}}" ]; then
read -p "Hotfix branch name (hotfix/___): " name
[ -z "$name" ] && { echo "Name required"; exit 1; }
else
name="{{name}}"
fi
branch_name="hotfix/$name"
# Ensure we're up to date with main
git fetch origin main
# Check if branch already exists
if git show-ref --verify --quiet "refs/heads/$branch_name"; then
echo "Branch $branch_name already exists"
read -p "Switch to it? [y/N] " switch
if [[ "$switch" =~ ^[Yy]$ ]]; then
git checkout "$branch_name"
fi
else
read -p "Create branch $branch_name from main? [y/N] " create
if [[ "$create" =~ ^[Yy]$ ]]; then
git checkout -b "$branch_name" origin/main
echo ""
echo "✅ Created $branch_name from main"
else
echo "Aborted"
exit 0
fi
fi
echo ""
echo "Next steps:"
echo " 1. Apply your hotfix commits"
echo " 2. Push and create PR to main"
echo " 3. After merge, run 'just release' on main to publish"
# Prepare a new TypeScript SDK release
[group('release')]
[confirm('Start TS SDK release process?')]
release-ts-sdk:
#!/usr/bin/env bash
set -euo pipefail
if [ -n "$(git status --porcelain)" ]; then
echo "Error: Working directory not clean"
exit 1
fi
current=$(node -p "require('./sdks/ts/package.json').version")
echo "Current version: $current"
read -p "New version: " version
[ -z "$version" ] && { echo "Version required"; exit 1; }
echo "Updating to $version..."
npm version "$version" --no-git-tag-version --prefix sdks/ts
git add sdks/ts/package.json
echo ""
echo "Ready! Next steps:"
echo " git commit -m 'chore: release ts-sdk v$version'"
echo " git push origin HEAD"
echo " Trigger 'Publish TypeScript SDK (Manual)' workflow"