logger update and makefile created

This commit is contained in:
Ravi Prasad
2025-11-12 21:11:16 -06:00
parent d34321c345
commit 21a68d7ef0
5 changed files with 25 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
# Tells 'make' these are command names, not files
.PHONY: up down
# Command to run: make up
up:
docker-compose -f docker-compose.local.yml up --build -d
# Command to run: make down
down:
docker-compose down