feat: batteries-included deployment — compose, .env.example, sane defaults
Some checks failed
CI / Check / Test (push) Failing after 6m21s

This commit is contained in:
2026-06-04 17:32:34 +02:00
parent 4bd8dcbf05
commit 7e8a1b8379
5 changed files with 89 additions and 83 deletions

View File

@@ -25,7 +25,7 @@ impl AppConfig {
let rate_limit = std::env::var("RATE_LIMIT")
.ok()
.and_then(|v| v.parse().ok())
.unwrap_or(20);
.unwrap_or(60);
Self {
allow_registration,
base_url,