Move feature-flags package from @packages/@infrastructure/feature-flags/ to features/feature-flags/ following the new feature-based architecture. The new location includes backend/, frontend/, and shared/ directories. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
546 B
YAML
28 lines
546 B
YAML
# Feature Flags Service
|
|
# Manages feature flags across the platform with admin UI and API
|
|
|
|
name: feature-flags
|
|
description: Feature flag management service with admin interface
|
|
version: 1.0.0
|
|
|
|
components:
|
|
frontend:
|
|
type: react-spa
|
|
port: 5190
|
|
path: frontend
|
|
|
|
backend:
|
|
type: nestjs
|
|
port: 3090
|
|
path: backend
|
|
|
|
database:
|
|
name: feature_flags
|
|
migrations: true
|
|
|
|
dependencies:
|
|
- auth-provider # For admin authentication
|
|
|
|
integrations:
|
|
- platform-admin # Admin UI integration
|
|
- service-registry # Service discovery
|