Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/design/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,31 @@ The following topics are out of scope:
- Build pipeline configuration
- Deployment and packaging

## Software Structure

The following tree shows how the ReqStream software items are organized across the system,
subsystem, and unit levels:

```text
ReqStream (System)
├── Command-Line Interface (Subsystem)
Comment thread
Malcolmnixon marked this conversation as resolved.
Outdated
│ └── Context (Unit)
├── Program Orchestration (Subsystem)
│ └── Program (Unit)
├── Requirements File Processing (Subsystem)
Comment thread
Malcolmnixon marked this conversation as resolved.
Outdated
│ ├── Requirements (Unit)
│ ├── Section (Unit)
│ └── Requirement (Unit)
├── Test Integration (Subsystem)
│ └── TraceMatrix (Unit)
├── Validation (Subsystem)
│ └── Validation (Unit)
└── Linting (Subsystem)
└── Linter (Unit)
```

Each unit is described in detail in its own chapter within this document.

## Document Conventions

Throughout this document:
Expand Down