Files
goplt/docs/content/adr/README.md
0x1d b4b918cba8
All checks were successful
CI / Test (pull_request) Successful in 27s
CI / Lint (pull_request) Successful in 20s
CI / Build (pull_request) Successful in 16s
CI / Format Check (pull_request) Successful in 2s
docs: ensure newline before lists across docs for MkDocs rendering
2025-11-06 10:56:50 +01:00

5.0 KiB

Architecture Decision Records (ADRs)

This directory contains Architecture Decision Records (ADRs) for the Go Platform project.

What are ADRs?

ADRs document important architectural decisions made during the project. They help:

  • Track why decisions were made
  • Understand the context and constraints
  • Review decisions when requirements change
  • Onboard new team members

ADR Format

Each ADR follows this structure:

  • Status: Proposed | Accepted | Rejected | Superseded
  • Context: The situation that led to the decision
  • Decision: What was decided
  • Consequences: Positive and negative impacts

ADR Index

Epic 0: Project Setup & Foundation

Epic 1: Core Kernel & Infrastructure

Epic 2: Authentication & Authorization

Epic 3: Module Framework

Epic 5: Infrastructure Adapters

Epic 6: Observability & Production Readiness

Epic 7: Testing, Documentation & CI/CD

Architecture & Scaling

Adding New ADRs

When making a new architectural decision:

  1. Create a new file: XXXX-short-title.md (next sequential number)
  2. Follow the ADR template
  3. Update this README with the new entry
  4. Set status to "Proposed" initially
  5. Update to "Accepted" after review/approval

References