Skip to content

Commit

Permalink
chore: update make file messages
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianoliveira committed Dec 3, 2023
1 parent 8538503 commit 5af687f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions services/news/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.Phony: run
run:
@echo "Running..."
@echo "Running news app"
@gunicorn -b 0.0.0.0:4003 'app:server'

.Phony: run-dev
run-dev:
@echo "Running..."
@echo "Running news app"
@python -m app
6 changes: 3 additions & 3 deletions services/todos/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.Phony: run
run:
@echo "Running service one"
@echo "Running todo app"
@go run cmd/todo/*.go

.Phony: build
build:
@echo "Running service one"
@echo "Running todo app"
@go run cmd/todo/main.go -o bin/todo-service

.Phony: watch
watch:
@echo "Running service one"
@echo "Running todo app"
@npx nodemon --exec 'make run' --signal SIGTERM

0 comments on commit 5af687f

Please sign in to comment.