Security Fixes

This commit is contained in:
Eric Gullickson
2025-08-24 14:39:50 -05:00
parent 000e71a026
commit e22d643ae3
19 changed files with 187 additions and 8838 deletions

View File

@@ -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