Security Fixes
This commit is contained in:
15
Makefile
15
Makefile
@@ -1,10 +1,10 @@
|
||||
.PHONY: help setup dev stop clean test logs shell-backend shell-frontend migrate rebuild
|
||||
.PHONY: help setup start dev stop clean test logs shell-backend shell-frontend migrate rebuild
|
||||
|
||||
help:
|
||||
@echo "MotoVaultPro - Fully Containerized Modified Feature Capsule Architecture"
|
||||
@echo "MotoVaultPro - Production-Ready Modified Feature Capsule Architecture"
|
||||
@echo "Commands:"
|
||||
@echo " make setup - Initial project setup"
|
||||
@echo " make dev - Start all services in development mode"
|
||||
@echo " make start - Start all services"
|
||||
@echo " make rebuild - Rebuild and restart containers (for code changes)"
|
||||
@echo " make stop - Stop all services"
|
||||
@echo " make clean - Clean all data and volumes"
|
||||
@@ -27,14 +27,17 @@ setup:
|
||||
@echo "Backend: http://localhost:3001"
|
||||
@echo "MinIO Console: http://localhost:9001"
|
||||
|
||||
dev:
|
||||
@echo "Starting development environment..."
|
||||
start:
|
||||
@echo "Starting application services..."
|
||||
@docker compose up -d --build
|
||||
@echo "✅ Development environment running!"
|
||||
@echo "✅ Application running!"
|
||||
@echo "Frontend: http://localhost:3000"
|
||||
@echo "Backend: http://localhost:3001/health"
|
||||
@echo "View logs with: make logs"
|
||||
|
||||
# Alias for backward compatibility
|
||||
dev: start
|
||||
|
||||
stop:
|
||||
@docker compose down
|
||||
|
||||
|
||||
Reference in New Issue
Block a user