28 lines
546 B
YAML
Executable file
28 lines
546 B
YAML
Executable file
# 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
|