Skip to content

Commit

Permalink
fix: rollback first change
Browse files Browse the repository at this point in the history
  • Loading branch information
marigarciamlopes committed Jan 29, 2025
1 parent 7a6714b commit fe3e296
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@ set-env:
cp -r $(AUDIT_DIR)/.env.example $(AUDIT_DIR)/.env
@echo "$(BLUE)Environment files created successfully$(NC)"

.PHONY: up
up:
@echo "$(BLUE)Starting all services...$(NC)"
@$(DOCKER_CMD) -f $(AUTH_DIR)/docker-compose.yml up --build -d
@$(DOCKER_CMD) -f $(INFRA_DIR)/docker-compose.yml up --build -d
@$(DOCKER_CMD) -f $(LEDGER_DIR)/docker-compose.yml up --build -d
@$(DOCKER_CMD) -f $(TRANSACTION_DIR)/docker-compose.yml up --build -d
@echo "$(BLUE)All services started successfully$(NC)"

.PHONY: auth
auth:
@echo "$(BLUE)Executing command in auth service...$(NC)"
Expand All @@ -185,15 +194,6 @@ audit:
@echo "$(BLUE)Executing command in audit service...$(NC)"
$(MAKE) -C $(AUDIT_DIR) $(COMMAND)

.PHONY: up
up:
@echo "$(BLUE)Starting all services...$(NC)"
@$(DOCKER_CMD) -f $(AUTH_DIR)/docker-compose.yml up --build -d
@$(DOCKER_CMD) -f $(INFRA_DIR)/docker-compose.yml up --build -d
@$(DOCKER_CMD) -f $(LEDGER_DIR)/docker-compose.yml up --build -d
@$(DOCKER_CMD) -f $(TRANSACTION_DIR)/docker-compose.yml up --build -d
@echo "$(BLUE)All services started successfully$(NC)"

.PHONY: all-services
all-services:
@echo "$(BLUE)Executing command across all services...$(NC)"
Expand Down

0 comments on commit fe3e296

Please sign in to comment.