Some checks failed
Backend API CI / test-unit (push) Failing after 0s
Backend API CI / test-integration (push) Failing after 0s
Frontend CI / test (push) Failing after 0s
Storybook Audit / Build & audit Storybook (push) Failing after 0s
Stream Server CI / test (push) Failing after 0s
- ORDER BY dynamiques : whitelist explicite, fallback created_at DESC - Login/register soumis au rate limiter global - VERSION sync + check CI - Nettoyage références veza-chat-server - Go 1.24 partout (Dockerfile, workflows) - TODO/FIXME/HACK convertis en issues ou résolus
40 lines
1.4 KiB
Makefile
40 lines
1.4 KiB
Makefile
# ==============================================================================
|
|
# VEZA MONOREPO - ULTIMATE CONTROL PLANE
|
|
# ==============================================================================
|
|
# Stack: Docker + Incus (LXD) Support
|
|
# System: Linux / Bash
|
|
#
|
|
# Configuration: edit make/config.mk (ports, services, paths).
|
|
# Add new targets in make/*.mk or below.
|
|
# ==============================================================================
|
|
|
|
SHELL := /bin/bash
|
|
.ONESHELL:
|
|
.DEFAULT_GOAL := help
|
|
|
|
# --- Configuration (single source of truth) ---
|
|
include make/config.mk
|
|
include make/ui.mk
|
|
|
|
# --- All feature modules ---
|
|
include make/tools.mk
|
|
include make/infra.mk
|
|
include make/dev.mk
|
|
include make/build.mk
|
|
include make/test.mk
|
|
include make/services.mk
|
|
include make/high.mk
|
|
include make/incus.mk
|
|
include make/help.mk
|
|
|
|
# ==============================================================================
|
|
# PER-SERVICE CONVENIENCE (dev-*, test-*, lint-*, build-*)
|
|
# ==============================================================================
|
|
# Usage: make dev-web, make test-backend-api, make lint-web, etc.
|
|
# Add new services in make/config.mk (SERVICES, SERVICE_DIR_*, PORT_*).
|
|
# ==============================================================================
|
|
|
|
.PHONY: dev-web dev-backend-api dev-stream-server
|
|
.PHONY: test-web test-backend-api test-stream-server
|
|
.PHONY: lint-web lint-backend-api lint-stream-server
|
|
# (targets defined in make/dev.mk and make/test.mk)
|