Files
goplt/docs/content/stories
0x1d 031a90eca0 feat(docker): Add Docker support for all services
- Create Dockerfiles for all four services (auth, identity, authz, audit)
  - Multi-stage builds using golang:1.25-alpine
  - Minimal runtime images using alpine:latest
  - Copy config files to runtime image

- Create docker-compose.dev.yml for development
  - Only PostgreSQL and Consul
  - Use when running services locally with 'go run'

- Update docker-compose.yml for full deployment
  - All services + infrastructure
  - Services build from Dockerfiles
  - Health checks and dependencies configured
  - Environment variables for service configuration

- Add .dockerignore to optimize build context
  - Excludes docs, tests, IDE files, build artifacts

- Update SUMMARY.md
  - Document both docker-compose files
  - Add Docker deployment section
  - Update file structure to include Dockerfiles
2025-11-06 20:46:43 +01:00
..
2025-11-05 11:00:36 +01:00
2025-11-05 11:00:36 +01:00

Implementation Tasks

This directory contains detailed task definitions for each epic of the Go Platform implementation.

Task Organization

Tasks are organized by epic, with each major task section having its own detailed file:

Epic 0: Project Setup & Foundation

Epic 1: Core Kernel & Infrastructure

Epic 2: Core Services (Authentication & Authorization)

  • Epic 2 Tasks - Auth, Identity, Authz, Audit as independent services

Epic 3: Module Framework (Feature Services)

Epic 4: Sample Feature Service (Blog Service)

Epic 5: Infrastructure Adapters

Epic 6: Observability & Production Readiness

Epic 7: Testing, Documentation & CI/CD

Epic 8: Advanced Features & Polish (Optional)

Task Status

Each task file includes:

  • Task ID: Unique identifier (e.g., 0.1.1)
  • Title: Descriptive task name
  • Epic: Implementation epic
  • Status: Pending | In Progress | Completed | Blocked
  • Priority: High | Medium | Low
  • Dependencies: Tasks that must complete first
  • Description: Detailed requirements
  • Acceptance Criteria: How to verify completion
  • Implementation Notes: Technical details and references
  • Related ADRs: Links to relevant architecture decisions

Task Tracking

Tasks can be tracked using:

  • GitHub Issues (linked from tasks)
  • Project boards
  • Task management tools
  • Direct commit messages referencing task IDs

Task Naming Convention

Tasks follow the format: {epic}.{section}.{subtask}

Example: 0.1.1 = Epic 0, Section 1 (Repository Bootstrap), Subtask 1