51 lines
1.7 KiB
Markdown
51 lines
1.7 KiB
Markdown
# System Design - Final Clean Structure
|
|
|
|
**Date:** 2025-01-19
|
|
**Status:** ✅ Cleanup Complete
|
|
|
|
## Active Structure
|
|
|
|
```
|
|
System Design/
|
|
├── system_design/ # ⭐ ACTIVE - All current documentation
|
|
│ ├── features/ # Feature specifications
|
|
│ ├── specifications/ # Core specifications
|
|
│ ├── SRS/ # Software Requirements
|
|
│ ├── analysis/ # Analysis documents
|
|
│ └── [documentation files]
|
|
│
|
|
└── draft/ # ⚠️ ARCHIVE - Old/deprecated documents
|
|
├── Features_old/
|
|
├── system_arch_final_old/
|
|
├── Creating_Gap_Analysis_old/
|
|
├── Gap_Analysis_old/
|
|
├── SRS_old/
|
|
└── [deprecated files]
|
|
```
|
|
|
|
## What's Active
|
|
|
|
**✅ USE THESE:**
|
|
- `System Design/system_design/` - **All active documentation is here**
|
|
|
|
## What's Archived
|
|
|
|
**⚠️ DO NOT USE:**
|
|
- `System Design/draft/` - **Old, duplicate, or deprecated documents**
|
|
|
|
## Quick Reference
|
|
|
|
| Need | Location |
|
|
|------|----------|
|
|
| Feature specifications | `system_design/features/` |
|
|
| System requirements traceability | `system_design/features/System_Requirements_Traceability.csv` |
|
|
| State machine | `system_design/specifications/System_State_Machine_Specification.md` |
|
|
| Failure handling | `system_design/specifications/Failure_Handling_Model.md` |
|
|
| Software requirements | `system_design/SRS/SRS.md` |
|
|
| Gap analysis | `system_design/analysis/Gap_Analysis_and_Solutions.md` |
|
|
| Documentation guide | `system_design/README.md` |
|
|
|
|
---
|
|
|
|
**All active work should be done in `system_design/` folder only.**
|