Initial commit: Egregore docs service

Rust microservice using rouille for documentation management.
Provides HTTP API for reading and updating STATUS.md, HISTORY.md, RUNBOOK.md.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
egregore 2026-02-02 11:47:30 +00:00
commit 2d62a179b9
3 changed files with 298 additions and 0 deletions

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "docs"
version = "0.1.0"
edition = "2021"
[dependencies]
rouille = "3.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }