SEL 部署 – 加密链式部署时间线
我们在事后分析中浪费了几个小时来重建“何时部署了什么”。
SEL Deploy 创建了一个防篡改的部署时间线:
- 每次部署:命令哈希、git 提交、时间戳、退出代码
- 与之前的部署链条相连(篡改会破坏链条)
- 使用 Ed25519 签名(不可否认)
- 本地 SQLite 用于快速查询时间线
试试吧:
```
git clone https://github.com/chokriabouzid-star/sel-deploy
cd sel-deploy
cargo build --release
./target/release/sel-deploy keygen
./target/release/sel-deploy run -- echo "hello world"
```
基于 SEL Core 构建(确定性引擎,33/33 测试)。
开源(MIT 许可证)。无 SaaS。完全本地化。
GitHub: https://github.com/chokriabouzid-star/sel-deploy
查看原文
We wasted hours in post-mortems reconstructing "what deployed when."<p>SEL Deploy creates a tamper-evident deployment timeline:
• Each deployment: command hash, git commit, timestamp, exit code
• Chained to previous (tampering breaks the chain)
• Signed with Ed25519 (non-repudiable)
• Local SQLite for fast timeline queries<p>Try it:
git clone https://github.com/chokriabouzid-star/sel-deploy
cd sel-deploy
cargo build --release
./target/release/sel-deploy keygen
./target/release/sel-deploy run -- echo "hello world"<p>Built on SEL Core (deterministic engine, 33/33 tests).
Open source (MIT). No SaaS. Fully local.<p>GitHub: https://github.com/chokriabouzid-star/sel-deploy