-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlib.rs
More file actions
36 lines (35 loc) · 1.65 KB
/
lib.rs
File metadata and controls
36 lines (35 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//! Torrust Tracker Deployer
//!
//! Main library for torrust-tracker-deploy with complete DDD layer-based architecture.
//!
//! ## Architecture Layers
//!
//! - `domain` - Domain Layer: Pure business logic and domain models
//! - `template` - Core template domain models and business logic
//! - `application` - Application Layer: Use case orchestration and workflow coordination
//! - `commands` - High-level deployment commands using Command pattern
//! - `steps` - Workflow orchestration and business process steps
//! - `infrastructure` - Infrastructure Layer: Technical capabilities and delivery mechanisms
//! - `executor` - Low-level command execution utilities
//! - `adapters` - External tool integration adapters (Ansible, LXD, `OpenTofu`, SSH)
//! - `remote_actions` - Repository-like implementations for remote system operations
//! - `ansible` - Ansible delivery mechanism and implementation details
//! - `tofu` - `OpenTofu` delivery mechanism and implementation details
//! - `template` - Template rendering delivery mechanisms (wrappers)
//! - `presentation` - Presentation Layer: User-facing output and presentation concerns
//!
//! ## Other Modules
//! - `adapters` - External tool adapters (thin CLI wrappers)
//! - `bootstrap` - Application initialization and bootstrap concerns
//! - `config` - Configuration management for deployment environments
//! - `shared` - Shared modules used across different layers
//! - `testing` - Testing utilities (unit, integration, and end-to-end)
pub mod adapters;
pub mod application;
pub mod bootstrap;
pub mod config;
pub mod domain;
pub mod infrastructure;
pub mod presentation;
pub mod shared;
pub mod testing;