@@ -72,7 +72,7 @@ From the official Torrust Tracker documentation, we need to account for:
7272### Core Principles
7373
74741 . ** Infrastructure ≠ Application** : Clean separation of concerns
75- 2 . ** Environment Parity** : Same deployment process for local/staging/ production
75+ 2 . ** Environment Parity** : Same deployment process for local/production
76763 . ** Configuration as Environment** : All config via environment variables
77774 . ** Immutable Infrastructure** : VMs are cattle, not pets
78785 . ** Deployment Pipeline** : Clear build → release → run stages
@@ -103,7 +103,7 @@ the flexibility to deploy to multiple cloud providers.
103103
104104#### 1.3 Environment Standardization
105105
106- - Standardize local, staging, and production environments
106+ - Standardize local and production environments
107107- Create environment-specific variable files
108108- Implement configuration validation
109109
@@ -191,7 +191,6 @@ torrust-tracker-demo/
191191│ └── config/ # Configuration templates
192192│ ├── environments/
193193│ │ ├── local.env
194- │ │ ├── staging.env
195194│ │ └── production.env
196195│ └── templates/
197196│ ├── tracker.toml.tpl
@@ -200,15 +199,13 @@ torrust-tracker-demo/
200199│ ├── compose/ # Environment-specific compose files
201200│ │ ├── base.yaml # Base services
202201│ │ ├── local.yaml # Local overrides
203- │ │ ├── staging.yaml # Staging overrides
204202│ │ └── production.yaml # Production overrides
205203│ ├── config/ # Application configurations
206204│ │ └── templates/ # Configuration templates
207205│ └── scripts/ # Application-specific scripts
208206└── docs/
209207 └── deployment/ # Deployment documentation
210208 ├── local.md
211- ├── staging.md
212209 └── production.md
213210```
214211
@@ -304,7 +301,6 @@ make test-services # Health checks, endpoints
304301``` bash
305302# Multi-environment testing
306303make test-local # Local environment
307- make test-staging # Staging environment
308304make test-production # Production environment (dry-run)
309305```
310306
0 commit comments