@bluealba/platform-cli 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/index.js +278 -15
  2. package/docs/404.mdx +5 -0
  3. package/docs/architecture/api-explorer.mdx +478 -0
  4. package/docs/architecture/architecture-diagrams.mdx +12 -0
  5. package/docs/architecture/authentication-system.mdx +903 -0
  6. package/docs/architecture/authorization-system.mdx +886 -0
  7. package/docs/architecture/bootstrap.mdx +1442 -0
  8. package/docs/architecture/gateway-architecture.mdx +845 -0
  9. package/docs/architecture/multi-tenancy.mdx +1150 -0
  10. package/docs/architecture/overview.mdx +776 -0
  11. package/docs/architecture/scheduler.mdx +818 -0
  12. package/docs/architecture/shell.mdx +885 -0
  13. package/docs/architecture/ui-extension-points.mdx +781 -0
  14. package/docs/architecture/user-states.mdx +794 -0
  15. package/docs/development/overview.mdx +21 -0
  16. package/docs/development/workflow.mdx +914 -0
  17. package/docs/getting-started/core-concepts.mdx +892 -0
  18. package/docs/getting-started/installation.mdx +780 -0
  19. package/docs/getting-started/overview.mdx +83 -0
  20. package/docs/getting-started/quick-start.mdx +940 -0
  21. package/docs/guides/adding-documentation-sites.mdx +1367 -0
  22. package/docs/guides/creating-services.mdx +1736 -0
  23. package/docs/guides/creating-ui-modules.mdx +1860 -0
  24. package/docs/guides/identity-providers.mdx +1007 -0
  25. package/docs/guides/mermaid-diagrams.mdx +212 -0
  26. package/docs/guides/using-feature-flags.mdx +1059 -0
  27. package/docs/guides/working-with-rooms.mdx +566 -0
  28. package/docs/index.mdx +57 -0
  29. package/docs/platform-cli/commands.mdx +604 -0
  30. package/docs/platform-cli/overview.mdx +195 -0
  31. package/package.json +5 -2
  32. package/skills/ba-platform/platform-cli.skill.md +26 -0
  33. package/skills/ba-platform/platform.skill.md +35 -0
  34. package/templates/application-monorepo-template/gitignore +95 -0
  35. package/templates/bootstrap-service-template/Dockerfile.development +1 -1
  36. package/templates/bootstrap-service-template/gitignore +57 -0
  37. package/templates/bootstrap-service-template/package.json +1 -1
  38. package/templates/bootstrap-service-template/src/main.ts +6 -16
  39. package/templates/customization-ui-module-template/Dockerfile.development +1 -1
  40. package/templates/customization-ui-module-template/gitignore +73 -0
  41. package/templates/nestjs-service-module-template/Dockerfile.development +1 -1
  42. package/templates/nestjs-service-module-template/gitignore +56 -0
  43. package/templates/platform-init-template/{{platformName}}-core/gitignore +97 -0
  44. package/templates/platform-init-template/{{platformName}}-core/local/.env.example +1 -1
  45. package/templates/platform-init-template/{{platformName}}-core/local/platform-docker-compose.yml +1 -1
  46. package/templates/platform-init-template/{{platformName}}-core/local/{{platformName}}-core-docker-compose.yml +0 -1
  47. package/templates/react-ui-module-template/Dockerfile +1 -1
  48. package/templates/react-ui-module-template/Dockerfile.development +1 -3
  49. package/templates/react-ui-module-template/caddy/Caddyfile +1 -1
  50. package/templates/react-ui-module-template/gitignore +72 -0
  51. package/templates/react-ui-module-template/Dockerfile_nginx +0 -11
  52. package/templates/react-ui-module-template/nginx/default.conf +0 -23
@@ -0,0 +1,83 @@
1
+ ---
2
+ title: Platform Overview
3
+ description: Introduction to the Blue Alba Platform - a comprehensive framework for building customer-facing applications with multi-tenancy, micro-frontends, and enterprise-grade features
4
+ ---
5
+
6
+ import { Card, CardGrid } from '@astrojs/starlight/components';
7
+
8
+ ## What is the Blue Alba Platform?
9
+
10
+ The **Blue Alba Platform** is a comprehensive enterprise framework designed to accelerate the development of customer-facing applications. It provides a complete foundation with built-in multi-tenancy, micro-frontend/micro-services architecture, robust authentication/authorization, and a rich set of shared libraries and tools. It provides a robust foundation for building scalable applications with enterprise-grade features.
11
+
12
+ Think of it as a production-ready platform that handles all the complex infrastructure and common features, allowing you to focus on building your unique business logic and user experiences.
13
+
14
+ ## Key Value Concepts
15
+
16
+ <CardGrid stagger>
17
+ <Card title="Authentication / Authorization" icon="license">
18
+ Multi-provider OAuth 2.0, JWT sessions, API keys, service-to-service auth.
19
+ Role-based access control with operations, roles, and conditional rules.
20
+ </Card>
21
+
22
+ <Card title="Multi-Tenancy Built-In" icon="star">
23
+ Complete tenant isolation and context management out of the box. Deploy once, serve multiple customers with data isolation, custom branding, and tenant-specific configurations.
24
+ </Card>
25
+
26
+ <Card title="Microservices / Micro-Frontend Architecture" icon="puzzle">
27
+ Modular, independently deployable services.
28
+ Build and deploy UI applications independently using single-spa. Teams can work autonomously while maintaining a cohesive user experience through the Shell UI.
29
+ </Card>
30
+
31
+ <Card title="Rapid Development" icon="rocket">
32
+ Pre-built services, UI components, and development tools dramatically reduce time-to-market. Focus on features, not infrastructure.
33
+ </Card>
34
+
35
+ <Card title="Production-Ready" icon="approve-check">
36
+ Battle-tested architecture with authentication (multi-IDP), API gateway, WebSocket support, audit trails, and comprehensive monitoring capabilities.
37
+ </Card>
38
+
39
+ <Card title="Extensibility" icon="puzzle">
40
+ Designed for customization. Add new services, UI applications, or integrate with existing systems using well-defined APIs and SDK libraries.
41
+ </Card>
42
+ </CardGrid>
43
+
44
+ ## Who Should Use It?
45
+
46
+ The Blue Alba Platform is ideal for:
47
+
48
+ - **Product Teams** building applications that need multi-tenancy from day one
49
+ - **Enterprise Organizations** developing internal or customer-facing applications with complex authorization requirements
50
+ - **Development Teams** looking to standardize on a proven architecture and avoid reinventing common platform features
51
+
52
+ ## What's Included?
53
+
54
+ Out of the box, the platform provides:
55
+
56
+ ### Core Features
57
+
58
+ - Multi-tenant architecture
59
+ - JWT-based authentication with [multi-IDP support]
60
+ - Role-based access control with operations, roles, and rules
61
+ - API gateway with HTTP/2, WebSocket, and Lambda support
62
+ - Application catalog
63
+ - User management
64
+
65
+ ### Services
66
+
67
+ - **HTTP Gateway** centralized routing, SSL termination, HTTP/2, WebSocket support, authentication, authorization
68
+ - **Database** sotrage for all the platform related data
69
+ - **Documentation** built-in site with all the platform documentation
70
+ - **Scheduler** to schedule tasks to be executed asynchronously
71
+
72
+ ### Administration UIs
73
+
74
+ - **Shell UI** main platform layout to host micro-frontend applications
75
+ - **Admin UI** Platform administration UI for managing users, roles, applications
76
+
77
+ ## Next Steps
78
+
79
+ Ready to get started?
80
+
81
+ **[Quick Start Guide](/_/docs/getting-started/quick-start/)** - Get up and running
82
+
83
+