Skip to content

Commit 65aa9f4

Browse files
v1.3.0
1 parent 7f94aa8 commit 65aa9f4

File tree

321 files changed

+36464
-16291
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+36464
-16291
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ private.*
88
.venv
99
bifrost-data
1010

11+
# Enterprise
12+
ui/app/enterprise
13+
ui/components/enterprise
14+
1115
# Temporary directories
1216
**/temp/
1317
/transports/ui

Makefile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Variables
44
HOST ?= localhost
55
PORT ?= 8080
6-
APP_DIR ?=
6+
APP_DIR ?=
77
PROMETHEUS_LABELS ?=
88
LOG_STYLE ?= json
99
LOG_LEVEL ?= info
@@ -16,7 +16,7 @@ BLUE=\033[0;34m
1616
CYAN=\033[0;36m
1717
NC=\033[0m # No Color
1818

19-
.PHONY: all help dev build-ui build run install-air clean test install-ui setup-workspace work-init work-clean docs docker-build
19+
.PHONY: all help dev build-ui build run install-air clean test install-ui setup-workspace work-init work-clean docs docker-build cleanup-enterprise
2020

2121
all: help
2222

@@ -34,7 +34,12 @@ help: ## Show this help message
3434
@echo " LOG_LEVEL Logger level: debug|info|warn|error (default: info)"
3535
@echo " APP_DIR App data directory inside container (default: /app/data)"
3636

37-
install-ui:
37+
cleanup-enterprise: ## Clean up enterprise directories if present
38+
@echo "$(GREEN)Cleaning up enterprise...$(NC)"
39+
@if [ -d "ui/app/enterprise" ]; then rm -rf ui/app/enterprise; fi
40+
@echo "$(GREEN)Enterprise cleaned up$(NC)"
41+
42+
install-ui: cleanup-enterprise
3843
@which node > /dev/null || (echo "$(RED)Error: Node.js is not installed. Please install Node.js first.$(NC)" && exit 1)
3944
@which npm > /dev/null || (echo "$(RED)Error: npm is not installed. Please install npm first.$(NC)" && exit 1)
4045
@echo "$(GREEN)Node.js and npm are installed$(NC)"

0 commit comments

Comments
 (0)