feat: updated default start mode from core to full

This commit is contained in:
2026-01-03 05:49:51 +01:00
parent 300ed387f5
commit 9540520dc4

View File

@@ -5,7 +5,7 @@
# --- Profiles management ---
# Usage: make up p=rag,meili
p ?= core
p ?= full
PROFILES_PARAM := COMPOSE_PROFILES=$(p)
# --- Commands ---
@@ -16,8 +16,8 @@ DOCKER_BUILD := docker build --no-cache \
--build-arg RUNNER=$(RUNNER)
# --- Phony ---
.PHONY: .env up down restart logs ps shell build build-test install update \
install-hooks test coverage lint format clean major minor patch help
.PHONY: .env bootstrap up down restart logs ps shell build build-test install \
update install-hooks test coverage lint format clean major minor patch help
# --- Setup ---
.env .env.make:
@@ -30,14 +30,14 @@ bootstrap: .env .env.make
# --- Docker ---
up: .env
@echo "Starting containers with profiles: [$(p)]..."
@echo "Starting containers with profiles: [full]..."
@$(PROFILES_PARAM) $(DOCKER_COMPOSE) up -d --remove-orphans \
&& echo "✓ Containers started" \
|| (echo "✗ Failed to start containers" && exit 1)
down:
@echo "Stopping containers..."
@$(DOCKER_COMPOSE) down \
@$(PROFILES_PARAM) $(DOCKER_COMPOSE) down \
&& echo "✓ Containers stopped" \
|| (echo "✗ Failed to stop containers" && exit 1)