- Add Cloud for Sovereignty landing zone architecture and deployment - Implement complete legal document management system - Reorganize documentation with improved navigation - Add infrastructure improvements (Dockerfiles, K8s, monitoring) - Add operational improvements (graceful shutdown, rate limiting, caching) - Create comprehensive project structure documentation - Add Azure deployment automation scripts - Improve repository navigation and organization
7.0 KiB
7.0 KiB
Documentation Navigation Guide
Last Updated: 2025-01-27
Purpose: Quick navigation guide for all project documentation
Quick Links
🚀 Getting Started
- Main README - Project overview
- Project Structure - Complete structure guide
- Quick Start Guide - Development setup
📐 Architecture
- Architecture Overview - System architecture
- Cloud for Sovereignty Landing Zone - Complete architecture
- Sovereignty Landing Zone Summary - Executive summary
🚢 Deployment
- Deployment Overview - Deployment guide index
- Azure Environment Setup - Azure configuration
- Sovereignty Landing Zone Deployment - Multi-region deployment
- Azure CDN Setup - CDN configuration
- Entra VerifiedID - Entra setup
🔌 Integrations
- Integrations Overview - Integration index
- Entra VerifiedID - Credential issuance
- Microsoft Entra VerifiedID - Complete guide
⚖️ Legal System
- Legal Documentation - Legal system overview
- Document Management - DMS documentation
- Implementation Guide - Implementation details
🏛️ Governance
- Governance Overview - Governance index
- Contributing - Contribution guidelines
- Security - Security policies
📊 Reports
- Reports Overview - Project reports index
- Comprehensive Project Review - Full review
- Remaining Steps - Task list
- Task Completion Status - Progress tracking
Documentation by Role
👨💻 Developers
Getting Started
Backend Development
- Architecture
- Service READMEs in
services/*/README.md - Package READMEs in
packages/*/README.md
Frontend Development
- Architecture
- App READMEs in
apps/*/README.md - UI Package
🏗️ Infrastructure Engineers
Infrastructure
Azure Deployment
Cloud Architecture
🔐 Security Engineers
Security
Compliance
📋 Project Managers
Project Status
Architecture
Documentation Structure
docs/
├── README.md # This file
├── architecture/ # Architecture documentation
│ ├── README.md # Architecture overview
│ ├── CLOUD_FOR_SOVEREIGNTY_LANDING_ZONE.md
│ └── SOVEREIGNTY_LANDING_ZONE_SUMMARY.md
├── deployment/ # Deployment guides
│ ├── README.md # Deployment index
│ └── azure/ # Azure-specific guides
│ ├── ENVIRONMENT_SETUP.md
│ ├── SOVEREIGNTY_LANDING_ZONE_DEPLOYMENT.md
│ ├── DOTENV_SETUP.md
│ ├── cdn-setup.md
│ └── entra-verifiedid.md
├── integrations/ # Integration documentation
│ ├── README.md # Integration index
│ └── entra-verifiedid/ # Entra VerifiedID
│ └── README.md
├── legal/ # Legal system documentation
│ ├── README.md # Legal system overview
│ └── document-management/ # Document management
│ └── implementation/ # Implementation details
├── governance/ # Governance & policies
│ ├── README.md # Governance overview
│ ├── CONTRIBUTING.md
│ └── SECURITY.md
└── reports/ # Project reports
├── README.md # Reports index
├── COMPREHENSIVE_PROJECT_REVIEW.md
├── REMAINING_STEPS_COMPLETE.md
└── TASK_COMPLETION_STATUS.md
Finding Documentation
By Topic
Architecture
- All files in
docs/architecture/
Deployment
- All files in
docs/deployment/
Integrations
- All files in
docs/integrations/
Legal System
- All files in
docs/legal/
Governance
- All files in
docs/governance/
Reports
- All files in
docs/reports/
By File Type
README Files - Directory overviews
find docs -name README.md
Guides - How-to guides
find docs -name "*GUIDE*.md"
find docs -name "*SETUP*.md"
Architecture - Architecture documentation
find docs -name "*ARCHITECTURE*.md"
find docs -name "*LANDING*.md"
Reports - Status reports
find docs -name "*REPORT*.md"
find docs -name "*STATUS*.md"
find docs -name "*REVIEW*.md"
Documentation Standards
File Naming
README.md- Directory overview*_SETUP.md- Setup guides*_DEPLOYMENT.md- Deployment guides*_GUIDE.md- How-to guides*_SUMMARY.md- Executive summaries*_REVIEW.md- Reviews and analysis
Structure
- Overview - What is this?
- Prerequisites - What do I need?
- Quick Start - How do I start?
- Detailed Guide - Step-by-step instructions
- Troubleshooting - Common issues
- References - Additional resources
Contributing to Documentation
- Follow existing structure
- Use consistent naming
- Include examples
- Keep it up to date
- Add to navigation (this file)
Last Updated: 2025-01-27