This commit is contained in:
bwnyasse
2026-01-10 21:22:35 -05:00
parent 90455d9181
commit d43a14ee0c
116 changed files with 41323 additions and 19 deletions

View File

@@ -4,17 +4,17 @@
install:
@echo "--> Installing web frontend dependencies..."
@cd frontend-web && npm install
@cd apps/web-dashboard && npm install
dev:
@echo "--> Ensuring web frontend dependencies are installed..."
@cd frontend-web && npm install
@cd apps/web-dashboard && npm install
@echo "--> Starting web frontend development server on http://localhost:5173 ..."
@cd frontend-web && npm run dev
@cd apps/web-dashboard && npm run dev
build:
@echo "--> Building web frontend for production..."
@cd frontend-web && VITE_APP_ENV=$(ENV) npm run build
@cd apps/web-dashboard && VITE_APP_ENV=$(ENV) npm run build
deploy-app: build
@echo "--> Deploying Frontend Web App to [$(ENV)] environment..."