-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlib.rs
More file actions
42 lines (40 loc) · 2.01 KB
/
Copy pathlib.rs
File metadata and controls
42 lines (40 loc) · 2.01 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
37
38
39
40
41
42
//! 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)
// False positive: clippy reports large_stack_arrays for vec![] macro with ServiceTopology
// This is a known upstream issue: https://github.com/rust-lang/rust-clippy/issues/12586
// Tracking issue: https://github.com/torrust/torrust-tracker-deployer/issues/304
// See: docs/issues/304-clippy-large-stack-arrays-false-positive.md
#![allow(clippy::large_stack_arrays)]
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;