Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit 9b29232

Browse files
committed
feat: [#28] update Makefile command names for environment consistency
- Update infra-config-local → infra-config-development - Update .PHONY declaration to match new command name - Preserve infra-test-local (refers to local testing concept) - Ensure all user-facing commands reflect development environment naming This completes the Phase 1 foundation work for multi-provider architecture, ensuring consistent naming throughout the system.
1 parent bd240c7 commit 9b29232

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Makefile for Torrust Tracker Demo - Twelve-Factor App Deployment
22
.PHONY: help install-deps test-e2e lint test-unit clean
33
.PHONY: infra-init infra-plan infra-apply infra-destroy infra-status infra-refresh-state
4-
.PHONY: infra-config-local infra-config-production infra-validate-config
4+
.PHONY: infra-config-development infra-config-production infra-validate-config
55
.PHONY: infra-test-prereq infra-test-ci infra-test-local
66
.PHONY: app-deploy app-redeploy app-health-check
77
.PHONY: app-test-config app-test-containers app-test-services
@@ -90,9 +90,9 @@ infra-refresh-state: ## Refresh Terraform state to detect IP changes
9090
@echo "Refreshing Terraform state..."
9191
@cd $(TERRAFORM_DIR) && tofu refresh
9292

93-
infra-config-local: ## Generate local environment configuration
94-
@echo "Configuring local environment..."
95-
$(SCRIPTS_DIR)/configure-env.sh local
93+
infra-config-development: ## Generate development environment configuration
94+
@echo "Configuring development environment..."
95+
$(SCRIPTS_DIR)/configure-env.sh development
9696

9797
infra-config-production: ## Generate production environment configuration
9898
@echo "Configuring production environment..."

0 commit comments

Comments
 (0)