bae705aa97
- Add NFC ePassport roadmap (ICAO 9303, eIDAS) - Add TensorFlow.js edge face detection (BlazeFace) - Add structured audit logger (GDPR-compliant) - Risk scoring support Part of KYC Apple Native UX v1.1.0
26 lines
1.7 KiB
Bash
26 lines
1.7 KiB
Bash
# AAMOS Ledger — Miljövariabler
|
|
# Kopiera till .env och fyll i värden. ALDRIG checka in .env i git!
|
|
|
|
# ── Databas ──────────────────────────────────────────────────────────────────
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/aamos_ledger
|
|
|
|
# ── JWT & Auth ───────────────────────────────────────────────────────────────
|
|
# HS256 (dev): delad secret
|
|
# RS256 (prod): privat nyckel för signering, publik för verifiering
|
|
AMOS_JWT_SECRET=your-jwt-secret-min-32-chars-long
|
|
JWT_PUBLIC_KEY_PATH=/opt/amos/data/keys/jwt-public.pem
|
|
|
|
# Internt token för service-to-service-anrop (agents, andra moduler)
|
|
LEDGER_INTERNAL_TOKEN=generate-strong-random-token-here
|
|
|
|
# ── Redis / Hermes ───────────────────────────────────────────────────────────
|
|
REDIS_URL=redis://127.0.0.1:6379
|
|
|
|
# ── Server ───────────────────────────────────────────────────────────────────
|
|
NODE_ENV=production
|
|
AAMOS_LEDGER_PORT=3250
|
|
|
|
# ── Valfritt ─────────────────────────────────────────────────────────────────
|
|
# SERVICE_NAME=aamos-ledger
|
|
# HERMES_CHANNEL=aamos:hermes
|
|
# HERMES_LOG_DIR=/opt/amos/data/hermes |