feat(server): create-user CLI + session-store migration on startup

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-02 15:07:58 +02:00
parent 642f709bbe
commit dbff95c2a9
6 changed files with 159 additions and 8 deletions
+5
View File
@@ -19,12 +19,17 @@ anyhow.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
api = { path = "../api" }
auth = { path = "../auth" }
db = { path = "../db" }
domain = { path = "../domain" }
rpassword.workspace = true
[dev-dependencies]
reqwest.workspace = true
serde_json.workspace = true
api = { path = "../api" }
auth = { path = "../auth" }
db = { path = "../db" }
domain = { path = "../domain" }
sqlx.workspace = true
temp-env = "0.3"