Assist_Design/docs/README.md

70 lines
2.7 KiB
Markdown
Raw Normal View History

2025-08-21 15:24:40 +09:00
# 📚 Customer Portal Documentation
## 🚀 Quick Start
- **[Getting Started](GETTING_STARTED.md)** - Environment setup and initial configuration
- **[Development Commands](RUN.md)** - Daily development workflow
- **[Production Deployment](DEPLOY.md)** - Docker deployment guide
2025-08-22 17:02:49 +09:00
## 🏗️ Architecture & Systems
2025-08-21 15:24:40 +09:00
- **[Auth Module Architecture](AUTH-MODULE-ARCHITECTURE.md)** - Layered auth design and services
- **[Address System](ADDRESS_SYSTEM.md)** - Complete address management documentation
- **[Product Catalog Architecture](PRODUCT-CATALOG-ARCHITECTURE.md)** - SKU-based catalog system
- **[Portal Data Model](PORTAL-DATA-MODEL.md)** - Database schema and relationships
- **[Ordering & Provisioning](PORTAL-ORDERING-PROVISIONING.md)** - Order processing flow
- **[System Structure](STRUCTURE.md)** - Overall system architecture
2025-08-21 15:24:40 +09:00
## 🔧 Technical References
2025-08-21 15:24:40 +09:00
- **[Logging](LOGGING.md)** - Logging standards and practices
- **[Salesforce Products](SALESFORCE-PRODUCTS.md)** - Product configuration in Salesforce
- **[Portal Roadmap](PORTAL-ROADMAP.md)** - Future development plans
2025-08-21 15:24:40 +09:00
## 📋 Documentation Standards
2025-08-22 17:02:49 +09:00
### When to Update Documentation
2025-08-21 15:24:40 +09:00
- **New Features**: Update relevant architecture docs
- **API Changes**: Update technical references
- **Configuration Changes**: Update getting started guide
- **Deployment Changes**: Update deployment guide
2025-08-22 17:02:49 +09:00
### Documentation Structure
2025-08-21 15:24:40 +09:00
```
docs/
├── README.md # This index
├── GETTING_STARTED.md # Setup & configuration
├── RUN.md # Development commands
├── DEPLOY.md # Production deployment
├── ADDRESS_SYSTEM.md # Address management
├── PRODUCT-CATALOG-ARCHITECTURE.md # Catalog system
├── PORTAL-DATA-MODEL.md # Database schema
├── PORTAL-ORDERING-PROVISIONING.md # Order processing
├── STRUCTURE.md # System architecture
├── LOGGING.md # Logging practices
├── SALESFORCE-PRODUCTS.md # SF configuration
└── PORTAL-ROADMAP.md # Future plans
2025-08-21 15:24:40 +09:00
```
## 🎯 Key Principles
2025-08-21 15:24:40 +09:00
### Clean Documentation
-**Single source of truth** - No redundant docs
-**Up-to-date** - Reflects current implementation
-**Practical** - Includes real code examples
-**Organized** - Clear structure and navigation
2025-08-21 15:24:40 +09:00
### Developer Experience
-**Quick reference** - Essential info easily accessible
-**Complete examples** - Working code snippets
-**Troubleshooting** - Common issues and solutions
-**Testing guidance** - How to verify implementations
2025-08-21 15:24:40 +09:00
---
2025-08-21 15:24:40 +09:00
_This documentation reflects the current clean, modern implementation of the Customer Portal system._