The great storkit name conversion

This commit is contained in:
Dave
2026-03-20 12:26:02 +00:00
parent 51d878e117
commit c4e45b2841
25 changed files with 1522 additions and 1333 deletions

View File

@@ -24,7 +24,7 @@ cargo run
cargo build --release
# Run the server (serves embedded frontend/dist/)
./target/release/story-kit
./target/release/storkit
```
## Cross-Platform Distribution
@@ -37,10 +37,10 @@ Story Kit ships as a **single self-contained binary** with the React frontend em
```bash
# Native build no extra tools required beyond Rust + npm
make build-macos
# Output: target/release/story-kit
# Output: target/release/storkit
# Verify only system frameworks are linked (Security.framework, libSystem.B.dylib, etc.)
otool -L target/release/story-kit
otool -L target/release/storkit
```
### Linux (static x86_64, zero dynamic deps)
@@ -60,13 +60,13 @@ cargo install cross
```bash
make build-linux
# Output: target/x86_64-unknown-linux-musl/release/story-kit
# Output: target/x86_64-unknown-linux-musl/release/storkit
# Verify the binary is statically linked
file target/x86_64-unknown-linux-musl/release/story-kit
file target/x86_64-unknown-linux-musl/release/storkit
# Expected: ELF 64-bit LSB executable, x86-64, statically linked
ldd target/x86_64-unknown-linux-musl/release/story-kit
ldd target/x86_64-unknown-linux-musl/release/storkit
# Expected: not a dynamic executable
```
@@ -74,7 +74,7 @@ ldd target/x86_64-unknown-linux-musl/release/story-kit
```bash
# No Rust, Node, glibc, or any other library needed just copy and run
./story-kit
./storkit
```
## Releasing