create-fluxstack 1.0.2 → 1.0.3
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.
- package/.claude/settings.local.json +63 -0
- package/.dockerignore +50 -0
- package/.env.example +53 -0
- package/.gitattributes +2 -0
- package/.github/workflows/ci-build-tests.yml +480 -0
- package/.github/workflows/dependency-management.yml +324 -0
- package/.github/workflows/release-validation.yml +355 -0
- package/.kiro/specs/fluxstack-architecture-optimization/design.md +700 -0
- package/.kiro/specs/fluxstack-architecture-optimization/requirements.md +127 -0
- package/.kiro/specs/fluxstack-architecture-optimization/tasks.md +330 -0
- package/CLAUDE.md +200 -0
- package/Dockerfile +58 -0
- package/Dockerfile.backend +52 -0
- package/Dockerfile.frontend +54 -0
- package/ENV_TESTING_REPORT.md +292 -0
- package/FRAMEWORK_ROADMAP.md +183 -0
- package/FRONTEND_TESTS_README.md +287 -0
- package/LICENSE +21 -0
- package/README-Docker.md +85 -0
- package/TEST_RESULTS.md +130 -0
- package/ai-context/00-QUICK-START.md +86 -0
- package/ai-context/README.md +88 -0
- package/ai-context/development/eden-treaty-guide.md +362 -0
- package/ai-context/development/patterns.md +382 -0
- package/ai-context/examples/crud-complete.md +626 -0
- package/ai-context/project/architecture.md +399 -0
- package/ai-context/project/overview.md +213 -0
- package/ai-context/recent-changes/eden-treaty-refactor.md +281 -0
- package/ai-context/recent-changes/type-inference-fix.md +223 -0
- package/ai-context/reference/environment-vars.md +384 -0
- package/ai-context/reference/troubleshooting.md +407 -0
- package/app/client/README.md +69 -0
- package/app/client/frontend-only.ts +12 -0
- package/app/client/index.html +13 -0
- package/app/client/public/vite.svg +1 -0
- package/app/client/src/App.css +883 -0
- package/app/client/src/App.tsx +669 -0
- package/app/client/src/assets/react.svg +1 -0
- package/app/client/src/components/TestPage.tsx +453 -0
- package/app/client/src/index.css +51 -0
- package/app/client/src/lib/eden-api.ts +110 -0
- package/app/client/src/main.tsx +10 -0
- package/app/client/src/vite-env.d.ts +1 -0
- package/app/client/tsconfig.app.json +43 -0
- package/app/client/tsconfig.json +7 -0
- package/app/client/tsconfig.node.json +25 -0
- package/app/server/app.ts +10 -0
- package/app/server/backend-only.ts +15 -0
- package/app/server/controllers/users.controller.ts +69 -0
- package/app/server/index.ts +104 -0
- package/app/server/routes/index.ts +25 -0
- package/app/server/routes/users.routes.ts +121 -0
- package/app/server/types/index.ts +1 -0
- package/app/shared/types/index.ts +18 -0
- package/bun.lock +1063 -0
- package/bunfig.toml +16 -0
- package/config/fluxstack.config.ts +48 -0
- package/core/__tests__/integration.test.ts +227 -0
- package/core/build/index.ts +186 -0
- package/core/cli/command-registry.ts +334 -0
- package/core/cli/index.ts +394 -0
- package/core/cli/plugin-discovery.ts +200 -0
- package/core/client/standalone.ts +57 -0
- package/core/config/__tests__/config-loader.test.ts +591 -0
- package/core/config/__tests__/config-merger.test.ts +657 -0
- package/core/config/__tests__/env-converter.test.ts +372 -0
- package/core/config/__tests__/env-processor.test.ts +431 -0
- package/core/config/__tests__/env.test.ts +452 -0
- package/core/config/__tests__/integration.test.ts +418 -0
- package/core/config/__tests__/loader.test.ts +331 -0
- package/core/config/__tests__/schema.test.ts +129 -0
- package/core/config/__tests__/validator.test.ts +318 -0
- package/core/config/env-dynamic.ts +326 -0
- package/core/config/env.ts +597 -0
- package/core/config/index.ts +317 -0
- package/core/config/loader.ts +546 -0
- package/core/config/runtime-config.ts +322 -0
- package/core/config/schema.ts +694 -0
- package/core/config/validator.ts +540 -0
- package/core/framework/__tests__/server.test.ts +233 -0
- package/core/framework/client.ts +132 -0
- package/core/framework/index.ts +8 -0
- package/core/framework/server.ts +501 -0
- package/core/framework/types.ts +63 -0
- package/core/plugins/__tests__/built-in.test.ts.disabled +366 -0
- package/core/plugins/__tests__/manager.test.ts +398 -0
- package/core/plugins/__tests__/monitoring.test.ts +401 -0
- package/core/plugins/__tests__/registry.test.ts +335 -0
- package/core/plugins/built-in/index.ts +142 -0
- package/core/plugins/built-in/logger/index.ts +180 -0
- package/core/plugins/built-in/monitoring/README.md +193 -0
- package/core/plugins/built-in/monitoring/index.ts +912 -0
- package/core/plugins/built-in/static/index.ts +289 -0
- package/core/plugins/built-in/swagger/index.ts +229 -0
- package/core/plugins/built-in/vite/index.ts +316 -0
- package/core/plugins/config.ts +348 -0
- package/core/plugins/discovery.ts +350 -0
- package/core/plugins/executor.ts +351 -0
- package/core/plugins/index.ts +195 -0
- package/core/plugins/manager.ts +583 -0
- package/core/plugins/registry.ts +424 -0
- package/core/plugins/types.ts +254 -0
- package/core/server/framework.ts +123 -0
- package/core/server/index.ts +8 -0
- package/core/server/plugins/database.ts +182 -0
- package/core/server/plugins/logger.ts +47 -0
- package/core/server/plugins/swagger.ts +34 -0
- package/core/server/standalone.ts +91 -0
- package/core/templates/create-project.ts +455 -0
- package/core/types/api.ts +169 -0
- package/core/types/build.ts +174 -0
- package/core/types/config.ts +68 -0
- package/core/types/index.ts +127 -0
- package/core/types/plugin.ts +94 -0
- package/core/utils/__tests__/errors.test.ts +139 -0
- package/core/utils/__tests__/helpers.test.ts +297 -0
- package/core/utils/__tests__/logger.test.ts +141 -0
- package/core/utils/env-runtime-v2.ts +232 -0
- package/core/utils/env-runtime.ts +252 -0
- package/core/utils/errors/codes.ts +115 -0
- package/core/utils/errors/handlers.ts +63 -0
- package/core/utils/errors/index.ts +81 -0
- package/core/utils/helpers.ts +180 -0
- package/core/utils/index.ts +18 -0
- package/core/utils/logger/index.ts +161 -0
- package/core/utils/logger.ts +106 -0
- package/core/utils/monitoring/index.ts +212 -0
- package/create-fluxstack.ts +1 -1
- package/create-test-app.ts +156 -0
- package/docker-compose.microservices.yml +75 -0
- package/docker-compose.simple.yml +57 -0
- package/docker-compose.yml +71 -0
- package/docs/dynamic-environment-variables.md +380 -0
- package/eslint.config.js +23 -0
- package/examples/dynamic-env-usage.ts +283 -0
- package/examples/hybrid-env-strategy.ts +212 -0
- package/examples/simplified-env-usage.ts +251 -0
- package/flux-cli.ts +214 -0
- package/fluxstack.config.ts +318 -0
- package/meu-app-teste/README.md +44 -0
- package/meu-app-teste/app/client/README.md +69 -0
- package/meu-app-teste/app/client/frontend-only.ts +12 -0
- package/meu-app-teste/app/client/index.html +13 -0
- package/meu-app-teste/app/client/public/vite.svg +1 -0
- package/meu-app-teste/app/client/src/App.css +883 -0
- package/meu-app-teste/app/client/src/App.tsx +669 -0
- package/meu-app-teste/app/client/src/assets/react.svg +1 -0
- package/meu-app-teste/app/client/src/components/TestPage.tsx +453 -0
- package/meu-app-teste/app/client/src/index.css +51 -0
- package/meu-app-teste/app/client/src/lib/eden-api.ts +110 -0
- package/meu-app-teste/app/client/src/main.tsx +10 -0
- package/meu-app-teste/app/client/src/vite-env.d.ts +1 -0
- package/meu-app-teste/app/client/tsconfig.app.json +43 -0
- package/meu-app-teste/app/client/tsconfig.json +7 -0
- package/meu-app-teste/app/client/tsconfig.node.json +25 -0
- package/meu-app-teste/app/server/app.ts +10 -0
- package/meu-app-teste/app/server/backend-only.ts +15 -0
- package/meu-app-teste/app/server/controllers/users.controller.ts +69 -0
- package/meu-app-teste/app/server/index.ts +104 -0
- package/meu-app-teste/app/server/routes/index.ts +25 -0
- package/meu-app-teste/app/server/routes/users.routes.ts +121 -0
- package/meu-app-teste/app/server/types/index.ts +1 -0
- package/meu-app-teste/app/shared/types/index.ts +18 -0
- package/meu-app-teste/bun.lock +1053 -0
- package/meu-app-teste/core/__tests__/integration.test.ts +227 -0
- package/meu-app-teste/core/build/index.ts +186 -0
- package/meu-app-teste/core/cli/command-registry.ts +334 -0
- package/meu-app-teste/core/cli/index.ts +394 -0
- package/meu-app-teste/core/cli/plugin-discovery.ts +200 -0
- package/meu-app-teste/core/client/standalone.ts +57 -0
- package/meu-app-teste/core/config/__tests__/config-loader.test.ts +591 -0
- package/meu-app-teste/core/config/__tests__/config-merger.test.ts +657 -0
- package/meu-app-teste/core/config/__tests__/env-converter.test.ts +372 -0
- package/meu-app-teste/core/config/__tests__/env-processor.test.ts +431 -0
- package/meu-app-teste/core/config/__tests__/env.test.ts +452 -0
- package/meu-app-teste/core/config/__tests__/integration.test.ts +418 -0
- package/meu-app-teste/core/config/__tests__/loader.test.ts +331 -0
- package/meu-app-teste/core/config/__tests__/schema.test.ts +129 -0
- package/meu-app-teste/core/config/__tests__/validator.test.ts +318 -0
- package/meu-app-teste/core/config/env-dynamic.ts +326 -0
- package/meu-app-teste/core/config/env.ts +597 -0
- package/meu-app-teste/core/config/index.ts +317 -0
- package/meu-app-teste/core/config/loader.ts +546 -0
- package/meu-app-teste/core/config/runtime-config.ts +322 -0
- package/meu-app-teste/core/config/schema.ts +694 -0
- package/meu-app-teste/core/config/validator.ts +540 -0
- package/meu-app-teste/core/framework/__tests__/server.test.ts +233 -0
- package/meu-app-teste/core/framework/client.ts +132 -0
- package/meu-app-teste/core/framework/index.ts +8 -0
- package/meu-app-teste/core/framework/server.ts +501 -0
- package/meu-app-teste/core/framework/types.ts +63 -0
- package/meu-app-teste/core/plugins/__tests__/built-in.test.ts.disabled +366 -0
- package/meu-app-teste/core/plugins/__tests__/manager.test.ts +398 -0
- package/meu-app-teste/core/plugins/__tests__/monitoring.test.ts +401 -0
- package/meu-app-teste/core/plugins/__tests__/registry.test.ts +335 -0
- package/meu-app-teste/core/plugins/built-in/index.ts +142 -0
- package/meu-app-teste/core/plugins/built-in/logger/index.ts +180 -0
- package/meu-app-teste/core/plugins/built-in/monitoring/README.md +193 -0
- package/meu-app-teste/core/plugins/built-in/monitoring/index.ts +912 -0
- package/meu-app-teste/core/plugins/built-in/static/index.ts +289 -0
- package/meu-app-teste/core/plugins/built-in/swagger/index.ts +229 -0
- package/meu-app-teste/core/plugins/built-in/vite/index.ts +316 -0
- package/meu-app-teste/core/plugins/config.ts +348 -0
- package/meu-app-teste/core/plugins/discovery.ts +350 -0
- package/meu-app-teste/core/plugins/executor.ts +351 -0
- package/meu-app-teste/core/plugins/index.ts +195 -0
- package/meu-app-teste/core/plugins/manager.ts +583 -0
- package/meu-app-teste/core/plugins/registry.ts +424 -0
- package/meu-app-teste/core/plugins/types.ts +254 -0
- package/meu-app-teste/core/server/framework.ts +123 -0
- package/meu-app-teste/core/server/index.ts +8 -0
- package/meu-app-teste/core/server/plugins/database.ts +182 -0
- package/meu-app-teste/core/server/plugins/logger.ts +47 -0
- package/meu-app-teste/core/server/plugins/swagger.ts +34 -0
- package/meu-app-teste/core/server/standalone.ts +91 -0
- package/meu-app-teste/core/templates/create-project.ts +455 -0
- package/meu-app-teste/core/types/api.ts +169 -0
- package/meu-app-teste/core/types/build.ts +174 -0
- package/meu-app-teste/core/types/config.ts +68 -0
- package/meu-app-teste/core/types/index.ts +127 -0
- package/meu-app-teste/core/types/plugin.ts +94 -0
- package/meu-app-teste/core/utils/__tests__/errors.test.ts +139 -0
- package/meu-app-teste/core/utils/__tests__/helpers.test.ts +297 -0
- package/meu-app-teste/core/utils/__tests__/logger.test.ts +141 -0
- package/meu-app-teste/core/utils/env-runtime-v2.ts +232 -0
- package/meu-app-teste/core/utils/env-runtime.ts +252 -0
- package/meu-app-teste/core/utils/errors/codes.ts +115 -0
- package/meu-app-teste/core/utils/errors/handlers.ts +63 -0
- package/meu-app-teste/core/utils/errors/index.ts +81 -0
- package/meu-app-teste/core/utils/helpers.ts +180 -0
- package/meu-app-teste/core/utils/index.ts +18 -0
- package/meu-app-teste/core/utils/logger/index.ts +161 -0
- package/meu-app-teste/core/utils/logger.ts +106 -0
- package/meu-app-teste/core/utils/monitoring/index.ts +212 -0
- package/meu-app-teste/package.json +92 -0
- package/meu-app-teste/tsconfig.json +51 -0
- package/meu-app-teste/vite.config.ts +42 -0
- package/my-final-test/README.md +44 -0
- package/my-final-test/app/client/README.md +69 -0
- package/my-final-test/app/client/frontend-only.ts +12 -0
- package/my-final-test/app/client/index.html +13 -0
- package/my-final-test/app/client/public/vite.svg +1 -0
- package/my-final-test/app/client/src/App.css +883 -0
- package/my-final-test/app/client/src/App.tsx +669 -0
- package/my-final-test/app/client/src/assets/react.svg +1 -0
- package/my-final-test/app/client/src/components/TestPage.tsx +453 -0
- package/my-final-test/app/client/src/index.css +51 -0
- package/my-final-test/app/client/src/lib/eden-api.ts +110 -0
- package/my-final-test/app/client/src/main.tsx +10 -0
- package/my-final-test/app/client/src/vite-env.d.ts +1 -0
- package/my-final-test/app/client/tsconfig.app.json +43 -0
- package/my-final-test/app/client/tsconfig.json +7 -0
- package/my-final-test/app/client/tsconfig.node.json +25 -0
- package/my-final-test/app/server/app.ts +10 -0
- package/my-final-test/app/server/backend-only.ts +15 -0
- package/my-final-test/app/server/controllers/users.controller.ts +69 -0
- package/my-final-test/app/server/index.ts +104 -0
- package/my-final-test/app/server/routes/index.ts +25 -0
- package/my-final-test/app/server/routes/users.routes.ts +121 -0
- package/my-final-test/app/server/types/index.ts +1 -0
- package/my-final-test/app/shared/types/index.ts +18 -0
- package/my-final-test/bun.lock +993 -0
- package/my-final-test/core/__tests__/integration.test.ts +227 -0
- package/my-final-test/core/build/index.ts +186 -0
- package/my-final-test/core/cli/command-registry.ts +334 -0
- package/my-final-test/core/cli/index.ts +394 -0
- package/my-final-test/core/cli/plugin-discovery.ts +200 -0
- package/my-final-test/core/client/standalone.ts +57 -0
- package/my-final-test/core/config/__tests__/config-loader.test.ts +591 -0
- package/my-final-test/core/config/__tests__/config-merger.test.ts +657 -0
- package/my-final-test/core/config/__tests__/env-converter.test.ts +372 -0
- package/my-final-test/core/config/__tests__/env-processor.test.ts +431 -0
- package/my-final-test/core/config/__tests__/env.test.ts +452 -0
- package/my-final-test/core/config/__tests__/integration.test.ts +418 -0
- package/my-final-test/core/config/__tests__/loader.test.ts +331 -0
- package/my-final-test/core/config/__tests__/schema.test.ts +129 -0
- package/my-final-test/core/config/__tests__/validator.test.ts +318 -0
- package/my-final-test/core/config/env-dynamic.ts +326 -0
- package/my-final-test/core/config/env.ts +597 -0
- package/my-final-test/core/config/index.ts +317 -0
- package/my-final-test/core/config/loader.ts +546 -0
- package/my-final-test/core/config/runtime-config.ts +322 -0
- package/my-final-test/core/config/schema.ts +694 -0
- package/my-final-test/core/config/validator.ts +540 -0
- package/my-final-test/core/framework/__tests__/server.test.ts +233 -0
- package/my-final-test/core/framework/client.ts +132 -0
- package/my-final-test/core/framework/index.ts +8 -0
- package/my-final-test/core/framework/server.ts +501 -0
- package/my-final-test/core/framework/types.ts +63 -0
- package/my-final-test/core/plugins/__tests__/built-in.test.ts.disabled +366 -0
- package/my-final-test/core/plugins/__tests__/manager.test.ts +398 -0
- package/my-final-test/core/plugins/__tests__/monitoring.test.ts +401 -0
- package/my-final-test/core/plugins/__tests__/registry.test.ts +335 -0
- package/my-final-test/core/plugins/built-in/index.ts +142 -0
- package/my-final-test/core/plugins/built-in/logger/index.ts +180 -0
- package/my-final-test/core/plugins/built-in/monitoring/README.md +193 -0
- package/my-final-test/core/plugins/built-in/monitoring/index.ts +912 -0
- package/my-final-test/core/plugins/built-in/static/index.ts +289 -0
- package/my-final-test/core/plugins/built-in/swagger/index.ts +229 -0
- package/my-final-test/core/plugins/built-in/vite/index.ts +316 -0
- package/my-final-test/core/plugins/config.ts +348 -0
- package/my-final-test/core/plugins/discovery.ts +350 -0
- package/my-final-test/core/plugins/executor.ts +351 -0
- package/my-final-test/core/plugins/index.ts +195 -0
- package/my-final-test/core/plugins/manager.ts +583 -0
- package/my-final-test/core/plugins/registry.ts +424 -0
- package/my-final-test/core/plugins/types.ts +254 -0
- package/my-final-test/core/server/framework.ts +123 -0
- package/my-final-test/core/server/index.ts +8 -0
- package/my-final-test/core/server/plugins/database.ts +182 -0
- package/my-final-test/core/server/plugins/logger.ts +47 -0
- package/my-final-test/core/server/plugins/swagger.ts +34 -0
- package/my-final-test/core/server/standalone.ts +91 -0
- package/my-final-test/core/templates/create-project.ts +455 -0
- package/my-final-test/core/types/api.ts +169 -0
- package/my-final-test/core/types/build.ts +174 -0
- package/my-final-test/core/types/config.ts +68 -0
- package/my-final-test/core/types/index.ts +127 -0
- package/my-final-test/core/types/plugin.ts +94 -0
- package/my-final-test/core/utils/__tests__/errors.test.ts +139 -0
- package/my-final-test/core/utils/__tests__/helpers.test.ts +297 -0
- package/my-final-test/core/utils/__tests__/logger.test.ts +141 -0
- package/my-final-test/core/utils/env-runtime-v2.ts +232 -0
- package/my-final-test/core/utils/env-runtime.ts +252 -0
- package/my-final-test/core/utils/errors/codes.ts +115 -0
- package/my-final-test/core/utils/errors/handlers.ts +63 -0
- package/my-final-test/core/utils/errors/index.ts +81 -0
- package/my-final-test/core/utils/helpers.ts +180 -0
- package/my-final-test/core/utils/index.ts +18 -0
- package/my-final-test/core/utils/logger/index.ts +161 -0
- package/my-final-test/core/utils/logger.ts +106 -0
- package/my-final-test/core/utils/monitoring/index.ts +212 -0
- package/my-final-test/package.json +68 -0
- package/my-final-test/tsconfig.json +51 -0
- package/my-final-test/vite.config.ts +42 -0
- package/nginx-lb.conf +37 -0
- package/package-template.json +32 -15
- package/package.json +71 -30
- package/publish-setup.md +111 -0
- package/publish.sh +63 -0
- package/run-clean.ts +26 -0
- package/run-env-tests.ts +313 -0
- package/tailwind.config.js +34 -0
- package/teste-corrigido/README.md +44 -0
- package/teste-corrigido/app/client/README.md +69 -0
- package/teste-corrigido/app/client/frontend-only.ts +12 -0
- package/teste-corrigido/app/client/index.html +13 -0
- package/teste-corrigido/app/client/public/vite.svg +1 -0
- package/teste-corrigido/app/client/src/App.css +883 -0
- package/teste-corrigido/app/client/src/App.tsx +669 -0
- package/teste-corrigido/app/client/src/assets/react.svg +1 -0
- package/teste-corrigido/app/client/src/components/TestPage.tsx +453 -0
- package/teste-corrigido/app/client/src/index.css +51 -0
- package/teste-corrigido/app/client/src/lib/eden-api.ts +110 -0
- package/teste-corrigido/app/client/src/main.tsx +10 -0
- package/teste-corrigido/app/client/src/vite-env.d.ts +1 -0
- package/teste-corrigido/app/client/tsconfig.app.json +43 -0
- package/teste-corrigido/app/client/tsconfig.json +7 -0
- package/teste-corrigido/app/client/tsconfig.node.json +25 -0
- package/teste-corrigido/app/server/app.ts +10 -0
- package/teste-corrigido/app/server/backend-only.ts +15 -0
- package/teste-corrigido/app/server/controllers/users.controller.ts +69 -0
- package/teste-corrigido/app/server/index.ts +104 -0
- package/teste-corrigido/app/server/routes/index.ts +25 -0
- package/teste-corrigido/app/server/routes/users.routes.ts +121 -0
- package/teste-corrigido/app/server/types/index.ts +1 -0
- package/teste-corrigido/app/shared/types/index.ts +18 -0
- package/teste-corrigido/bun.lock +1053 -0
- package/teste-corrigido/core/__tests__/integration.test.ts +227 -0
- package/teste-corrigido/core/build/index.ts +186 -0
- package/teste-corrigido/core/cli/command-registry.ts +334 -0
- package/teste-corrigido/core/cli/index.ts +394 -0
- package/teste-corrigido/core/cli/plugin-discovery.ts +200 -0
- package/teste-corrigido/core/client/standalone.ts +57 -0
- package/teste-corrigido/core/config/__tests__/config-loader.test.ts +591 -0
- package/teste-corrigido/core/config/__tests__/config-merger.test.ts +657 -0
- package/teste-corrigido/core/config/__tests__/env-converter.test.ts +372 -0
- package/teste-corrigido/core/config/__tests__/env-processor.test.ts +431 -0
- package/teste-corrigido/core/config/__tests__/env.test.ts +452 -0
- package/teste-corrigido/core/config/__tests__/integration.test.ts +418 -0
- package/teste-corrigido/core/config/__tests__/loader.test.ts +331 -0
- package/teste-corrigido/core/config/__tests__/schema.test.ts +129 -0
- package/teste-corrigido/core/config/__tests__/validator.test.ts +318 -0
- package/teste-corrigido/core/config/env-dynamic.ts +326 -0
- package/teste-corrigido/core/config/env.ts +597 -0
- package/teste-corrigido/core/config/index.ts +317 -0
- package/teste-corrigido/core/config/loader.ts +546 -0
- package/teste-corrigido/core/config/runtime-config.ts +322 -0
- package/teste-corrigido/core/config/schema.ts +694 -0
- package/teste-corrigido/core/config/validator.ts +540 -0
- package/teste-corrigido/core/framework/__tests__/server.test.ts +233 -0
- package/teste-corrigido/core/framework/client.ts +132 -0
- package/teste-corrigido/core/framework/index.ts +8 -0
- package/teste-corrigido/core/framework/server.ts +501 -0
- package/teste-corrigido/core/framework/types.ts +63 -0
- package/teste-corrigido/core/plugins/__tests__/built-in.test.ts.disabled +366 -0
- package/teste-corrigido/core/plugins/__tests__/manager.test.ts +398 -0
- package/teste-corrigido/core/plugins/__tests__/monitoring.test.ts +401 -0
- package/teste-corrigido/core/plugins/__tests__/registry.test.ts +335 -0
- package/teste-corrigido/core/plugins/built-in/index.ts +142 -0
- package/teste-corrigido/core/plugins/built-in/logger/index.ts +180 -0
- package/teste-corrigido/core/plugins/built-in/monitoring/README.md +193 -0
- package/teste-corrigido/core/plugins/built-in/monitoring/index.ts +912 -0
- package/teste-corrigido/core/plugins/built-in/static/index.ts +289 -0
- package/teste-corrigido/core/plugins/built-in/swagger/index.ts +229 -0
- package/teste-corrigido/core/plugins/built-in/vite/index.ts +316 -0
- package/teste-corrigido/core/plugins/config.ts +348 -0
- package/teste-corrigido/core/plugins/discovery.ts +350 -0
- package/teste-corrigido/core/plugins/executor.ts +351 -0
- package/teste-corrigido/core/plugins/index.ts +195 -0
- package/teste-corrigido/core/plugins/manager.ts +583 -0
- package/teste-corrigido/core/plugins/registry.ts +424 -0
- package/teste-corrigido/core/plugins/types.ts +254 -0
- package/teste-corrigido/core/server/framework.ts +123 -0
- package/teste-corrigido/core/server/index.ts +8 -0
- package/teste-corrigido/core/server/plugins/database.ts +182 -0
- package/teste-corrigido/core/server/plugins/logger.ts +47 -0
- package/teste-corrigido/core/server/plugins/swagger.ts +34 -0
- package/teste-corrigido/core/server/standalone.ts +91 -0
- package/teste-corrigido/core/templates/create-project.ts +455 -0
- package/teste-corrigido/core/types/api.ts +169 -0
- package/teste-corrigido/core/types/build.ts +174 -0
- package/teste-corrigido/core/types/config.ts +68 -0
- package/teste-corrigido/core/types/index.ts +127 -0
- package/teste-corrigido/core/types/plugin.ts +94 -0
- package/teste-corrigido/core/utils/__tests__/errors.test.ts +139 -0
- package/teste-corrigido/core/utils/__tests__/helpers.test.ts +297 -0
- package/teste-corrigido/core/utils/__tests__/logger.test.ts +141 -0
- package/teste-corrigido/core/utils/env-runtime-v2.ts +232 -0
- package/teste-corrigido/core/utils/env-runtime.ts +252 -0
- package/teste-corrigido/core/utils/errors/codes.ts +115 -0
- package/teste-corrigido/core/utils/errors/handlers.ts +63 -0
- package/teste-corrigido/core/utils/errors/index.ts +81 -0
- package/teste-corrigido/core/utils/helpers.ts +180 -0
- package/teste-corrigido/core/utils/index.ts +18 -0
- package/teste-corrigido/core/utils/logger/index.ts +161 -0
- package/teste-corrigido/core/utils/logger.ts +106 -0
- package/teste-corrigido/core/utils/monitoring/index.ts +212 -0
- package/teste-corrigido/package-template.json +51 -0
- package/teste-corrigido/package.json +51 -0
- package/teste-corrigido/tsconfig.json +51 -0
- package/teste-corrigido/vite.config.ts +42 -0
- package/teste-final-npm/README.md +44 -0
- package/teste-final-npm/app/client/README.md +69 -0
- package/teste-final-npm/app/client/frontend-only.ts +12 -0
- package/teste-final-npm/app/client/index.html +13 -0
- package/teste-final-npm/app/client/public/vite.svg +1 -0
- package/teste-final-npm/app/client/src/App.css +883 -0
- package/teste-final-npm/app/client/src/App.tsx +669 -0
- package/teste-final-npm/app/client/src/assets/react.svg +1 -0
- package/teste-final-npm/app/client/src/components/TestPage.tsx +453 -0
- package/teste-final-npm/app/client/src/index.css +51 -0
- package/teste-final-npm/app/client/src/lib/eden-api.ts +110 -0
- package/teste-final-npm/app/client/src/main.tsx +10 -0
- package/teste-final-npm/app/client/src/vite-env.d.ts +1 -0
- package/teste-final-npm/app/client/tsconfig.app.json +43 -0
- package/teste-final-npm/app/client/tsconfig.json +7 -0
- package/teste-final-npm/app/client/tsconfig.node.json +25 -0
- package/teste-final-npm/app/server/app.ts +10 -0
- package/teste-final-npm/app/server/backend-only.ts +15 -0
- package/teste-final-npm/app/server/controllers/users.controller.ts +69 -0
- package/teste-final-npm/app/server/index.ts +104 -0
- package/teste-final-npm/app/server/routes/index.ts +25 -0
- package/teste-final-npm/app/server/routes/users.routes.ts +121 -0
- package/teste-final-npm/app/server/types/index.ts +1 -0
- package/teste-final-npm/app/shared/types/index.ts +18 -0
- package/teste-final-npm/bun.lock +1053 -0
- package/teste-final-npm/core/__tests__/integration.test.ts +227 -0
- package/teste-final-npm/core/build/index.ts +186 -0
- package/teste-final-npm/core/cli/command-registry.ts +334 -0
- package/teste-final-npm/core/cli/index.ts +394 -0
- package/teste-final-npm/core/cli/plugin-discovery.ts +200 -0
- package/teste-final-npm/core/client/standalone.ts +57 -0
- package/teste-final-npm/core/config/__tests__/config-loader.test.ts +591 -0
- package/teste-final-npm/core/config/__tests__/config-merger.test.ts +657 -0
- package/teste-final-npm/core/config/__tests__/env-converter.test.ts +372 -0
- package/teste-final-npm/core/config/__tests__/env-processor.test.ts +431 -0
- package/teste-final-npm/core/config/__tests__/env.test.ts +452 -0
- package/teste-final-npm/core/config/__tests__/integration.test.ts +418 -0
- package/teste-final-npm/core/config/__tests__/loader.test.ts +331 -0
- package/teste-final-npm/core/config/__tests__/schema.test.ts +129 -0
- package/teste-final-npm/core/config/__tests__/validator.test.ts +318 -0
- package/teste-final-npm/core/config/env-dynamic.ts +326 -0
- package/teste-final-npm/core/config/env.ts +597 -0
- package/teste-final-npm/core/config/index.ts +317 -0
- package/teste-final-npm/core/config/loader.ts +546 -0
- package/teste-final-npm/core/config/runtime-config.ts +322 -0
- package/teste-final-npm/core/config/schema.ts +694 -0
- package/teste-final-npm/core/config/validator.ts +540 -0
- package/teste-final-npm/core/framework/__tests__/server.test.ts +233 -0
- package/teste-final-npm/core/framework/client.ts +132 -0
- package/teste-final-npm/core/framework/index.ts +8 -0
- package/teste-final-npm/core/framework/server.ts +501 -0
- package/teste-final-npm/core/framework/types.ts +63 -0
- package/teste-final-npm/core/plugins/__tests__/built-in.test.ts.disabled +366 -0
- package/teste-final-npm/core/plugins/__tests__/manager.test.ts +398 -0
- package/teste-final-npm/core/plugins/__tests__/monitoring.test.ts +401 -0
- package/teste-final-npm/core/plugins/__tests__/registry.test.ts +335 -0
- package/teste-final-npm/core/plugins/built-in/index.ts +142 -0
- package/teste-final-npm/core/plugins/built-in/logger/index.ts +180 -0
- package/teste-final-npm/core/plugins/built-in/monitoring/README.md +193 -0
- package/teste-final-npm/core/plugins/built-in/monitoring/index.ts +912 -0
- package/teste-final-npm/core/plugins/built-in/static/index.ts +289 -0
- package/teste-final-npm/core/plugins/built-in/swagger/index.ts +229 -0
- package/teste-final-npm/core/plugins/built-in/vite/index.ts +316 -0
- package/teste-final-npm/core/plugins/config.ts +348 -0
- package/teste-final-npm/core/plugins/discovery.ts +350 -0
- package/teste-final-npm/core/plugins/executor.ts +351 -0
- package/teste-final-npm/core/plugins/index.ts +195 -0
- package/teste-final-npm/core/plugins/manager.ts +583 -0
- package/teste-final-npm/core/plugins/registry.ts +424 -0
- package/teste-final-npm/core/plugins/types.ts +254 -0
- package/teste-final-npm/core/server/framework.ts +123 -0
- package/teste-final-npm/core/server/index.ts +8 -0
- package/teste-final-npm/core/server/plugins/database.ts +182 -0
- package/teste-final-npm/core/server/plugins/logger.ts +47 -0
- package/teste-final-npm/core/server/plugins/swagger.ts +34 -0
- package/teste-final-npm/core/server/standalone.ts +91 -0
- package/teste-final-npm/core/templates/create-project.ts +455 -0
- package/teste-final-npm/core/types/api.ts +169 -0
- package/teste-final-npm/core/types/build.ts +174 -0
- package/teste-final-npm/core/types/config.ts +68 -0
- package/teste-final-npm/core/types/index.ts +127 -0
- package/teste-final-npm/core/types/plugin.ts +94 -0
- package/teste-final-npm/core/utils/__tests__/errors.test.ts +139 -0
- package/teste-final-npm/core/utils/__tests__/helpers.test.ts +297 -0
- package/teste-final-npm/core/utils/__tests__/logger.test.ts +141 -0
- package/teste-final-npm/core/utils/env-runtime-v2.ts +232 -0
- package/teste-final-npm/core/utils/env-runtime.ts +252 -0
- package/teste-final-npm/core/utils/errors/codes.ts +115 -0
- package/teste-final-npm/core/utils/errors/handlers.ts +63 -0
- package/teste-final-npm/core/utils/errors/index.ts +81 -0
- package/teste-final-npm/core/utils/helpers.ts +180 -0
- package/teste-final-npm/core/utils/index.ts +18 -0
- package/teste-final-npm/core/utils/logger/index.ts +161 -0
- package/teste-final-npm/core/utils/logger.ts +106 -0
- package/teste-final-npm/core/utils/monitoring/index.ts +212 -0
- package/teste-final-npm/package-template.json +51 -0
- package/teste-final-npm/package.json +51 -0
- package/teste-final-npm/tsconfig.json +51 -0
- package/teste-final-npm/vite.config.ts +42 -0
- package/tests/__mocks__/api.ts +56 -0
- package/tests/fixtures/users.ts +69 -0
- package/tests/integration/api/users.routes.test.ts +221 -0
- package/tests/setup.ts +29 -0
- package/tests/unit/app/client/App-simple.test.tsx +56 -0
- package/tests/unit/app/client/App.test.tsx.skip +237 -0
- package/tests/unit/app/client/eden-api.test.ts +186 -0
- package/tests/unit/app/client/simple.test.tsx +23 -0
- package/tests/unit/app/controllers/users.controller.test.ts +150 -0
- package/tests/unit/core/create-project.test.ts.skip +95 -0
- package/tests/unit/core/framework.test.ts +144 -0
- package/tests/unit/core/plugins/logger.test.ts.skip +268 -0
- package/tests/unit/core/plugins/vite.test.ts.disabled +188 -0
- package/tests/utils/test-helpers.ts +61 -0
- package/tsconfig.json +51 -0
- package/types/global.d.ts +30 -0
- package/types/vitest.d.ts +9 -0
- package/vite.config.ts +42 -0
- package/vitest.config.ts +50 -0
- package/workspace.json +6 -0
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Configuration Validation System for FluxStack
|
|
3
|
+
* Provides comprehensive validation with detailed error reporting
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import type { FluxStackConfig } from './schema'
|
|
7
|
+
import { fluxStackConfigSchema } from './schema'
|
|
8
|
+
|
|
9
|
+
export interface ValidationError {
|
|
10
|
+
path: string
|
|
11
|
+
message: string
|
|
12
|
+
value?: any
|
|
13
|
+
expected?: string
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface ValidationWarning {
|
|
17
|
+
path: string
|
|
18
|
+
message: string
|
|
19
|
+
suggestion?: string
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface ValidationResult {
|
|
23
|
+
valid: boolean
|
|
24
|
+
errors: string[]
|
|
25
|
+
warnings: string[]
|
|
26
|
+
details: {
|
|
27
|
+
errors: ValidationError[]
|
|
28
|
+
warnings: ValidationWarning[]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* JSON Schema validator implementation
|
|
34
|
+
*/
|
|
35
|
+
class SchemaValidator {
|
|
36
|
+
private validateProperty(
|
|
37
|
+
value: any,
|
|
38
|
+
schema: any,
|
|
39
|
+
path: string = '',
|
|
40
|
+
errors: ValidationError[] = [],
|
|
41
|
+
warnings: ValidationWarning[] = []
|
|
42
|
+
): void {
|
|
43
|
+
if (schema.type) {
|
|
44
|
+
this.validateType(value, schema, path, errors)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if (schema.properties && typeof value === 'object' && value !== null) {
|
|
48
|
+
this.validateObject(value, schema, path, errors, warnings)
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (schema.items && Array.isArray(value)) {
|
|
52
|
+
this.validateArray(value, schema, path, errors, warnings)
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
if (schema.enum) {
|
|
56
|
+
this.validateEnum(value, schema, path, errors)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (schema.pattern && typeof value === 'string') {
|
|
60
|
+
this.validatePattern(value, schema, path, errors)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (schema.minimum !== undefined && typeof value === 'number') {
|
|
64
|
+
this.validateMinimum(value, schema, path, errors)
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if (schema.maximum !== undefined && typeof value === 'number') {
|
|
68
|
+
this.validateMaximum(value, schema, path, errors)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (schema.minLength !== undefined && typeof value === 'string') {
|
|
72
|
+
this.validateMinLength(value, schema, path, errors)
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
if (schema.maxLength !== undefined && typeof value === 'string') {
|
|
76
|
+
this.validateMaxLength(value, schema, path, errors)
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (schema.minItems !== undefined && Array.isArray(value)) {
|
|
80
|
+
this.validateMinItems(value, schema, path, errors)
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
private validateType(value: any, schema: any, path: string, errors: ValidationError[]): void {
|
|
85
|
+
const actualType = Array.isArray(value) ? 'array' : typeof value
|
|
86
|
+
const expectedType = schema.type
|
|
87
|
+
|
|
88
|
+
if (actualType !== expectedType) {
|
|
89
|
+
errors.push({
|
|
90
|
+
path,
|
|
91
|
+
message: `Expected ${expectedType}, got ${actualType}`,
|
|
92
|
+
value,
|
|
93
|
+
expected: expectedType
|
|
94
|
+
})
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
private validateObject(
|
|
99
|
+
value: any,
|
|
100
|
+
schema: any,
|
|
101
|
+
path: string,
|
|
102
|
+
errors: ValidationError[],
|
|
103
|
+
warnings: ValidationWarning[]
|
|
104
|
+
): void {
|
|
105
|
+
// Check required properties
|
|
106
|
+
if (schema.required) {
|
|
107
|
+
for (const requiredProp of schema.required) {
|
|
108
|
+
if (!(requiredProp in value)) {
|
|
109
|
+
errors.push({
|
|
110
|
+
path: path ? `${path}.${requiredProp}` : requiredProp,
|
|
111
|
+
message: `Missing required property '${requiredProp}'`,
|
|
112
|
+
expected: 'required property'
|
|
113
|
+
})
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// Validate existing properties
|
|
119
|
+
for (const [key, propValue] of Object.entries(value)) {
|
|
120
|
+
const propPath = path ? `${path}.${key}` : key
|
|
121
|
+
const propSchema = schema.properties?.[key]
|
|
122
|
+
|
|
123
|
+
if (propSchema) {
|
|
124
|
+
this.validateProperty(propValue, propSchema, propPath, errors, warnings)
|
|
125
|
+
} else if (schema.additionalProperties === false) {
|
|
126
|
+
warnings.push({
|
|
127
|
+
path: propPath,
|
|
128
|
+
message: `Unknown property '${key}'`,
|
|
129
|
+
suggestion: 'Remove this property or add it to the schema'
|
|
130
|
+
})
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
private validateArray(
|
|
136
|
+
value: any[],
|
|
137
|
+
schema: any,
|
|
138
|
+
path: string,
|
|
139
|
+
errors: ValidationError[],
|
|
140
|
+
warnings: ValidationWarning[]
|
|
141
|
+
): void {
|
|
142
|
+
value.forEach((item, index) => {
|
|
143
|
+
const itemPath = `${path}[${index}]`
|
|
144
|
+
this.validateProperty(item, schema.items, itemPath, errors, warnings)
|
|
145
|
+
})
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
private validateEnum(value: any, schema: any, path: string, errors: ValidationError[]): void {
|
|
149
|
+
if (!schema.enum.includes(value)) {
|
|
150
|
+
errors.push({
|
|
151
|
+
path,
|
|
152
|
+
message: `Value must be one of: ${schema.enum.join(', ')}`,
|
|
153
|
+
value,
|
|
154
|
+
expected: schema.enum.join(' | ')
|
|
155
|
+
})
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
private validatePattern(value: string, schema: any, path: string, errors: ValidationError[]): void {
|
|
160
|
+
const regex = new RegExp(schema.pattern)
|
|
161
|
+
if (!regex.test(value)) {
|
|
162
|
+
errors.push({
|
|
163
|
+
path,
|
|
164
|
+
message: `Value does not match pattern: ${schema.pattern}`,
|
|
165
|
+
value,
|
|
166
|
+
expected: `pattern: ${schema.pattern}`
|
|
167
|
+
})
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
private validateMinimum(value: number, schema: any, path: string, errors: ValidationError[]): void {
|
|
172
|
+
if (value < schema.minimum) {
|
|
173
|
+
errors.push({
|
|
174
|
+
path,
|
|
175
|
+
message: `Value must be >= ${schema.minimum}`,
|
|
176
|
+
value,
|
|
177
|
+
expected: `>= ${schema.minimum}`
|
|
178
|
+
})
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
private validateMaximum(value: number, schema: any, path: string, errors: ValidationError[]): void {
|
|
183
|
+
if (value > schema.maximum) {
|
|
184
|
+
errors.push({
|
|
185
|
+
path,
|
|
186
|
+
message: `Value must be <= ${schema.maximum}`,
|
|
187
|
+
value,
|
|
188
|
+
expected: `<= ${schema.maximum}`
|
|
189
|
+
})
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
private validateMinLength(value: string, schema: any, path: string, errors: ValidationError[]): void {
|
|
194
|
+
if (value.length < schema.minLength) {
|
|
195
|
+
errors.push({
|
|
196
|
+
path,
|
|
197
|
+
message: `String must be at least ${schema.minLength} characters long`,
|
|
198
|
+
value,
|
|
199
|
+
expected: `length >= ${schema.minLength}`
|
|
200
|
+
})
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
private validateMaxLength(value: string, schema: any, path: string, errors: ValidationError[]): void {
|
|
205
|
+
if (value.length > schema.maxLength) {
|
|
206
|
+
errors.push({
|
|
207
|
+
path,
|
|
208
|
+
message: `String must be at most ${schema.maxLength} characters long`,
|
|
209
|
+
value,
|
|
210
|
+
expected: `length <= ${schema.maxLength}`
|
|
211
|
+
})
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
private validateMinItems(value: any[], schema: any, path: string, errors: ValidationError[]): void {
|
|
216
|
+
if (value.length < schema.minItems) {
|
|
217
|
+
errors.push({
|
|
218
|
+
path,
|
|
219
|
+
message: `Array must have at least ${schema.minItems} items`,
|
|
220
|
+
value,
|
|
221
|
+
expected: `length >= ${schema.minItems}`
|
|
222
|
+
})
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
validate(value: any, schema: any): ValidationResult {
|
|
227
|
+
const errors: ValidationError[] = []
|
|
228
|
+
const warnings: ValidationWarning[] = []
|
|
229
|
+
|
|
230
|
+
this.validateProperty(value, schema, '', errors, warnings)
|
|
231
|
+
|
|
232
|
+
return {
|
|
233
|
+
valid: errors.length === 0,
|
|
234
|
+
errors: errors.map(e => `${e.path}: ${e.message}`),
|
|
235
|
+
warnings: warnings.map(w => `${w.path}: ${w.message}${w.suggestion ? ` (${w.suggestion})` : ''}`),
|
|
236
|
+
details: { errors, warnings }
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Business logic validation rules
|
|
243
|
+
*/
|
|
244
|
+
class BusinessValidator {
|
|
245
|
+
validate(config: FluxStackConfig): ValidationResult {
|
|
246
|
+
const errors: ValidationError[] = []
|
|
247
|
+
const warnings: ValidationWarning[] = []
|
|
248
|
+
|
|
249
|
+
// Port conflict validation
|
|
250
|
+
this.validatePortConflicts(config, errors)
|
|
251
|
+
|
|
252
|
+
// CORS validation
|
|
253
|
+
this.validateCorsConfiguration(config, warnings)
|
|
254
|
+
|
|
255
|
+
// Plugin validation
|
|
256
|
+
this.validatePluginConfiguration(config, warnings)
|
|
257
|
+
|
|
258
|
+
// Build configuration validation
|
|
259
|
+
this.validateBuildConfiguration(config, warnings)
|
|
260
|
+
|
|
261
|
+
// Environment-specific validation
|
|
262
|
+
this.validateEnvironmentConfiguration(config, warnings)
|
|
263
|
+
|
|
264
|
+
// Security validation
|
|
265
|
+
this.validateSecurityConfiguration(config, warnings)
|
|
266
|
+
|
|
267
|
+
return {
|
|
268
|
+
valid: errors.length === 0,
|
|
269
|
+
errors: errors.map(e => `${e.path}: ${e.message}`),
|
|
270
|
+
warnings: warnings.map(w => `${w.path}: ${w.message}${w.suggestion ? ` (${w.suggestion})` : ''}`),
|
|
271
|
+
details: { errors, warnings }
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
private validatePortConflicts(config: FluxStackConfig, errors: ValidationError[]): void {
|
|
276
|
+
const ports = [config.server.port, config.client.port]
|
|
277
|
+
const uniquePorts = new Set(ports.filter(p => p !== 0)) // 0 means random port
|
|
278
|
+
|
|
279
|
+
if (uniquePorts.size !== ports.filter(p => p !== 0).length) {
|
|
280
|
+
errors.push({
|
|
281
|
+
path: 'ports',
|
|
282
|
+
message: 'Server and client ports must be different',
|
|
283
|
+
value: { server: config.server.port, client: config.client.port }
|
|
284
|
+
})
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
private validateCorsConfiguration(config: FluxStackConfig, warnings: ValidationWarning[]): void {
|
|
289
|
+
const { cors } = config.server
|
|
290
|
+
|
|
291
|
+
// Check for overly permissive CORS
|
|
292
|
+
if (cors.origins.includes('*')) {
|
|
293
|
+
warnings.push({
|
|
294
|
+
path: 'server.cors.origins',
|
|
295
|
+
message: 'Using wildcard (*) for CORS origins is not recommended in production',
|
|
296
|
+
suggestion: 'Specify explicit origins for better security'
|
|
297
|
+
})
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
// Check for missing common headers
|
|
301
|
+
const commonHeaders = ['Content-Type', 'Authorization']
|
|
302
|
+
const missingHeaders = commonHeaders.filter(h => !cors.headers.includes(h))
|
|
303
|
+
|
|
304
|
+
if (missingHeaders.length > 0) {
|
|
305
|
+
warnings.push({
|
|
306
|
+
path: 'server.cors.headers',
|
|
307
|
+
message: `Consider adding common headers: ${missingHeaders.join(', ')}`,
|
|
308
|
+
suggestion: 'These headers are commonly needed for API requests'
|
|
309
|
+
})
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
private validatePluginConfiguration(config: FluxStackConfig, warnings: ValidationWarning[]): void {
|
|
314
|
+
const { enabled, disabled } = config.plugins
|
|
315
|
+
|
|
316
|
+
// Check for plugins in both enabled and disabled lists
|
|
317
|
+
const conflicts = enabled.filter(p => disabled.includes(p))
|
|
318
|
+
if (conflicts.length > 0) {
|
|
319
|
+
warnings.push({
|
|
320
|
+
path: 'plugins',
|
|
321
|
+
message: `Plugins listed in both enabled and disabled: ${conflicts.join(', ')}`,
|
|
322
|
+
suggestion: 'Remove from one of the lists'
|
|
323
|
+
})
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// Check for essential plugins
|
|
327
|
+
const essentialPlugins = ['logger', 'cors']
|
|
328
|
+
const missingEssential = essentialPlugins.filter(p =>
|
|
329
|
+
!enabled.includes(p) || disabled.includes(p)
|
|
330
|
+
)
|
|
331
|
+
|
|
332
|
+
if (missingEssential.length > 0) {
|
|
333
|
+
warnings.push({
|
|
334
|
+
path: 'plugins.enabled',
|
|
335
|
+
message: `Consider enabling essential plugins: ${missingEssential.join(', ')}`,
|
|
336
|
+
suggestion: 'These plugins provide important functionality'
|
|
337
|
+
})
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
private validateBuildConfiguration(config: FluxStackConfig, warnings: ValidationWarning[]): void {
|
|
342
|
+
const { build } = config
|
|
343
|
+
|
|
344
|
+
// Check for development settings in production
|
|
345
|
+
if (process.env.NODE_ENV === 'production') {
|
|
346
|
+
if (!build.optimization.minify) {
|
|
347
|
+
warnings.push({
|
|
348
|
+
path: 'build.optimization.minify',
|
|
349
|
+
message: 'Minification is disabled in production',
|
|
350
|
+
suggestion: 'Enable minification for better performance'
|
|
351
|
+
})
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
if (!build.optimization.treeshake) {
|
|
355
|
+
warnings.push({
|
|
356
|
+
path: 'build.optimization.treeshake',
|
|
357
|
+
message: 'Tree-shaking is disabled in production',
|
|
358
|
+
suggestion: 'Enable tree-shaking to reduce bundle size'
|
|
359
|
+
})
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// Check for conflicting settings
|
|
364
|
+
if (build.optimization.bundleAnalyzer && process.env.NODE_ENV === 'production') {
|
|
365
|
+
warnings.push({
|
|
366
|
+
path: 'build.optimization.bundleAnalyzer',
|
|
367
|
+
message: 'Bundle analyzer is enabled in production',
|
|
368
|
+
suggestion: 'Disable bundle analyzer in production builds'
|
|
369
|
+
})
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
private validateEnvironmentConfiguration(config: FluxStackConfig, warnings: ValidationWarning[]): void {
|
|
374
|
+
if (config.environments) {
|
|
375
|
+
for (const [env, envConfig] of Object.entries(config.environments)) {
|
|
376
|
+
if (envConfig && typeof envConfig === 'object') {
|
|
377
|
+
// Check for potentially dangerous overrides
|
|
378
|
+
if ('server' in envConfig && envConfig.server && 'port' in envConfig.server) {
|
|
379
|
+
if (envConfig.server.port === 0 && env !== 'test') {
|
|
380
|
+
warnings.push({
|
|
381
|
+
path: `environments.${env}.server.port`,
|
|
382
|
+
message: 'Using random port (0) in non-test environment',
|
|
383
|
+
suggestion: 'Specify a fixed port for predictable deployments'
|
|
384
|
+
})
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
private validateSecurityConfiguration(config: FluxStackConfig, warnings: ValidationWarning[]): void {
|
|
393
|
+
// Check for missing authentication configuration in production
|
|
394
|
+
if (process.env.NODE_ENV === 'production' && !config.auth?.secret) {
|
|
395
|
+
warnings.push({
|
|
396
|
+
path: 'auth.secret',
|
|
397
|
+
message: 'No authentication secret configured for production',
|
|
398
|
+
suggestion: 'Set JWT_SECRET environment variable for secure authentication'
|
|
399
|
+
})
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
// Check for weak authentication settings
|
|
403
|
+
if (config.auth?.secret && config.auth.secret.length < 32) {
|
|
404
|
+
warnings.push({
|
|
405
|
+
path: 'auth.secret',
|
|
406
|
+
message: 'Authentication secret is too short',
|
|
407
|
+
suggestion: 'Use at least 32 characters for better security'
|
|
408
|
+
})
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
// Check for insecure CORS in production
|
|
412
|
+
if (process.env.NODE_ENV === 'production' && config.server.cors.credentials) {
|
|
413
|
+
const hasWildcard = config.server.cors.origins.includes('*')
|
|
414
|
+
if (hasWildcard) {
|
|
415
|
+
warnings.push({
|
|
416
|
+
path: 'server.cors',
|
|
417
|
+
message: 'CORS credentials enabled with wildcard origins in production',
|
|
418
|
+
suggestion: 'Specify explicit origins when using credentials'
|
|
419
|
+
})
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* Main configuration validator
|
|
427
|
+
*/
|
|
428
|
+
export function validateConfig(config: FluxStackConfig): ValidationResult {
|
|
429
|
+
const schemaValidator = new SchemaValidator()
|
|
430
|
+
const businessValidator = new BusinessValidator()
|
|
431
|
+
|
|
432
|
+
// Validate against JSON schema
|
|
433
|
+
const schemaResult = schemaValidator.validate(config, fluxStackConfigSchema)
|
|
434
|
+
|
|
435
|
+
// Validate business rules
|
|
436
|
+
const businessResult = businessValidator.validate(config)
|
|
437
|
+
|
|
438
|
+
// Combine results
|
|
439
|
+
return {
|
|
440
|
+
valid: schemaResult.valid && businessResult.valid,
|
|
441
|
+
errors: [...schemaResult.errors, ...businessResult.errors],
|
|
442
|
+
warnings: [...schemaResult.warnings, ...businessResult.warnings],
|
|
443
|
+
details: {
|
|
444
|
+
errors: [...schemaResult.details.errors, ...businessResult.details.errors],
|
|
445
|
+
warnings: [...schemaResult.details.warnings, ...businessResult.details.warnings]
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Validate configuration and throw on errors
|
|
452
|
+
*/
|
|
453
|
+
export function validateConfigStrict(config: FluxStackConfig): void {
|
|
454
|
+
const result = validateConfig(config)
|
|
455
|
+
|
|
456
|
+
if (!result.valid) {
|
|
457
|
+
const errorMessage = [
|
|
458
|
+
'Configuration validation failed:',
|
|
459
|
+
...result.errors.map(e => ` - ${e}`),
|
|
460
|
+
...(result.warnings.length > 0 ? ['Warnings:', ...result.warnings.map(w => ` - ${w}`)] : [])
|
|
461
|
+
].join('\n')
|
|
462
|
+
|
|
463
|
+
throw new Error(errorMessage)
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
/**
|
|
468
|
+
* Create a configuration validator for a specific environment
|
|
469
|
+
*/
|
|
470
|
+
export function createEnvironmentValidator(environment: string) {
|
|
471
|
+
return (config: FluxStackConfig): ValidationResult => {
|
|
472
|
+
// Apply environment-specific validation rules
|
|
473
|
+
const result = validateConfig(config)
|
|
474
|
+
|
|
475
|
+
// Add environment-specific warnings/errors
|
|
476
|
+
if (environment === 'production') {
|
|
477
|
+
// Additional production validations
|
|
478
|
+
if (config.logging.level === 'debug') {
|
|
479
|
+
result.warnings.push('Debug logging enabled in production - consider using "warn" or "error"')
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
if (!config.monitoring.enabled) {
|
|
483
|
+
result.warnings.push('Monitoring is disabled in production - consider enabling for better observability')
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
if (environment === 'development') {
|
|
488
|
+
// Additional development validations
|
|
489
|
+
if (config.build.optimization.minify) {
|
|
490
|
+
result.warnings.push('Minification enabled in development - this may slow down builds')
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
return result
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* Validate partial configuration (useful for updates)
|
|
500
|
+
*/
|
|
501
|
+
export function validatePartialConfig(
|
|
502
|
+
partialConfig: Partial<FluxStackConfig>,
|
|
503
|
+
baseConfig: FluxStackConfig
|
|
504
|
+
): ValidationResult {
|
|
505
|
+
// Merge partial config with base config
|
|
506
|
+
const mergedConfig = { ...baseConfig, ...partialConfig }
|
|
507
|
+
|
|
508
|
+
// Validate the merged configuration
|
|
509
|
+
return validateConfig(mergedConfig)
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Get validation suggestions for improving configuration
|
|
514
|
+
*/
|
|
515
|
+
export function getConfigSuggestions(config: FluxStackConfig): string[] {
|
|
516
|
+
const result = validateConfig(config)
|
|
517
|
+
const suggestions: string[] = []
|
|
518
|
+
|
|
519
|
+
// Extract suggestions from warnings
|
|
520
|
+
for (const warning of result.details.warnings) {
|
|
521
|
+
if (warning.suggestion) {
|
|
522
|
+
suggestions.push(`${warning.path}: ${warning.suggestion}`)
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
// Add general suggestions based on configuration
|
|
527
|
+
if (!config.monitoring.enabled) {
|
|
528
|
+
suggestions.push('Consider enabling monitoring for better observability')
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
if (config.plugins.enabled.length === 0) {
|
|
532
|
+
suggestions.push('Consider enabling some plugins to extend functionality')
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
if (!config.database && !config.custom?.database) {
|
|
536
|
+
suggestions.push('Consider adding database configuration if your app needs persistence')
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
return suggestions
|
|
540
|
+
}
|