create-fluxstack 1.0.1 → 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/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/bun.lock +21 -11
- package/bunfig.toml +16 -0
- package/config/fluxstack.config.ts +48 -0
- package/create-fluxstack.ts +2 -3
- 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/types/global.d.ts +30 -0
- package/types/vitest.d.ts +9 -0
- package/vitest.config.ts +50 -0
- package/workspace.json +6 -0
- package/.env +0 -30
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
# 👨💻 Padrões de Desenvolvimento - FluxStack
|
|
2
|
+
|
|
3
|
+
> **Padrões fundamentais e boas práticas para desenvolvimento eficiente no FluxStack**
|
|
4
|
+
|
|
5
|
+
## 🚨 **Regras Fundamentais**
|
|
6
|
+
|
|
7
|
+
### ❌ **NUNCA FAZER**
|
|
8
|
+
1. **Editar `core/`** - Framework é read-only (alterações serão perdidas)
|
|
9
|
+
2. **Usar `apiCall()` wrapper** - Quebra type inference do Eden Treaty
|
|
10
|
+
3. **Criar types manuais** para Eden Treaty - Use inferência automática
|
|
11
|
+
4. **Ignorar response schemas** - Necessários para documentação e tipos
|
|
12
|
+
5. **Trabalhar fora de `app/`** - Código da aplicação deve ficar em `app/`
|
|
13
|
+
|
|
14
|
+
### ✅ **SEMPRE FAZER**
|
|
15
|
+
1. **Trabalhar em `app/`** - Toda lógica da aplicação
|
|
16
|
+
2. **Usar Eden Treaty nativo** - `const { data, error } = await api.endpoint()`
|
|
17
|
+
3. **Definir response schemas** - Para inferência automática e docs
|
|
18
|
+
4. **Manter types em `app/shared/`** - Compartilhados entre client/server
|
|
19
|
+
5. **Testar com `bun run dev`** - Verificar funcionamento em desenvolvimento
|
|
20
|
+
|
|
21
|
+
## 🏗️ **Padrão de Criação de Features**
|
|
22
|
+
|
|
23
|
+
### **📋 Fluxo Padrão (4 Passos)**
|
|
24
|
+
```
|
|
25
|
+
1. Types (app/shared/) → 2. Controller (app/server/) → 3. Routes (app/server/) → 4. Frontend (app/client/)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### **1️⃣ Definir Types Compartilhados**
|
|
29
|
+
```typescript
|
|
30
|
+
// app/shared/types/[feature].ts
|
|
31
|
+
export interface Product {
|
|
32
|
+
id: number
|
|
33
|
+
name: string
|
|
34
|
+
price: number
|
|
35
|
+
createdAt: Date
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface CreateProductRequest {
|
|
39
|
+
name: string
|
|
40
|
+
price: number
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface ProductResponse {
|
|
44
|
+
success: boolean
|
|
45
|
+
product?: Product
|
|
46
|
+
message?: string
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### **2️⃣ Criar Controller**
|
|
51
|
+
```typescript
|
|
52
|
+
// app/server/controllers/[feature].controller.ts
|
|
53
|
+
export class ProductsController {
|
|
54
|
+
static async getProducts() {
|
|
55
|
+
// Lógica de negócio
|
|
56
|
+
return { products: [...] }
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
static async createProduct(data: CreateProductRequest): Promise<ProductResponse> {
|
|
60
|
+
// Validação + criação
|
|
61
|
+
return { success: true, product: newProduct }
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### **3️⃣ Definir Routes com Schemas**
|
|
67
|
+
```typescript
|
|
68
|
+
// app/server/routes/[feature].routes.ts
|
|
69
|
+
import { Elysia, t } from "elysia"
|
|
70
|
+
|
|
71
|
+
export const productsRoutes = new Elysia({ prefix: "/products" })
|
|
72
|
+
.get("/", () => ProductsController.getProducts(), {
|
|
73
|
+
// ✅ CRÍTICO: Response schema para Eden Treaty
|
|
74
|
+
response: t.Object({
|
|
75
|
+
products: t.Array(t.Object({
|
|
76
|
+
id: t.Number(),
|
|
77
|
+
name: t.String(),
|
|
78
|
+
price: t.Number(),
|
|
79
|
+
createdAt: t.Date()
|
|
80
|
+
}))
|
|
81
|
+
})
|
|
82
|
+
})
|
|
83
|
+
.post("/", async ({ body }) => ProductsController.createProduct(body), {
|
|
84
|
+
body: t.Object({
|
|
85
|
+
name: t.String(),
|
|
86
|
+
price: t.Number({ minimum: 0 })
|
|
87
|
+
}),
|
|
88
|
+
response: t.Object({
|
|
89
|
+
success: t.Boolean(),
|
|
90
|
+
product: t.Optional(t.Object({...})),
|
|
91
|
+
message: t.Optional(t.String())
|
|
92
|
+
})
|
|
93
|
+
})
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### **4️⃣ Usar no Frontend**
|
|
97
|
+
```typescript
|
|
98
|
+
// app/client/src/components/ProductList.tsx
|
|
99
|
+
const { data: products, error } = await api.products.get()
|
|
100
|
+
|
|
101
|
+
if (error) {
|
|
102
|
+
console.log(`Error: ${error.status}`)
|
|
103
|
+
return
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// ✨ Eden Treaty infere: products = { products: Product[] }
|
|
107
|
+
products.products.forEach(product => {
|
|
108
|
+
console.log(product.name) // ✨ Type-safe!
|
|
109
|
+
})
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## 🎯 **Padrões de Componentes React**
|
|
113
|
+
|
|
114
|
+
### **✅ Hook Personalizado (Recomendado)**
|
|
115
|
+
```typescript
|
|
116
|
+
// app/client/src/hooks/useProducts.ts
|
|
117
|
+
export function useProducts() {
|
|
118
|
+
const [products, setProducts] = useState<Product[]>([])
|
|
119
|
+
const [loading, setLoading] = useState(false)
|
|
120
|
+
|
|
121
|
+
const loadProducts = async () => {
|
|
122
|
+
setLoading(true)
|
|
123
|
+
const { data, error } = await api.products.get()
|
|
124
|
+
|
|
125
|
+
if (error) {
|
|
126
|
+
// Error handling
|
|
127
|
+
return
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
setProducts(data.products)
|
|
131
|
+
setLoading(false)
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
return { products, loading, loadProducts }
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
### **✅ Componente com Hook**
|
|
139
|
+
```typescript
|
|
140
|
+
// app/client/src/components/ProductList.tsx
|
|
141
|
+
export function ProductList() {
|
|
142
|
+
const { products, loading, loadProducts } = useProducts()
|
|
143
|
+
|
|
144
|
+
useEffect(() => {
|
|
145
|
+
loadProducts()
|
|
146
|
+
}, [])
|
|
147
|
+
|
|
148
|
+
if (loading) return <div>Loading...</div>
|
|
149
|
+
|
|
150
|
+
return (
|
|
151
|
+
<div>
|
|
152
|
+
{products.map(product => (
|
|
153
|
+
<ProductCard key={product.id} product={product} />
|
|
154
|
+
))}
|
|
155
|
+
</div>
|
|
156
|
+
)
|
|
157
|
+
}
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
## 🔧 **Padrões de Error Handling**
|
|
161
|
+
|
|
162
|
+
### **✅ Padrão Global**
|
|
163
|
+
```typescript
|
|
164
|
+
// app/client/src/lib/error-utils.ts
|
|
165
|
+
export function getErrorMessage(error: any): string {
|
|
166
|
+
switch (error.status) {
|
|
167
|
+
case 400: return "Dados inválidos"
|
|
168
|
+
case 401: return "Acesso negado"
|
|
169
|
+
case 404: return "Não encontrado"
|
|
170
|
+
case 500: return "Erro do servidor"
|
|
171
|
+
default: return error.message || "Erro desconhecido"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// Uso nos componentes
|
|
176
|
+
const { data, error } = await api.products.get()
|
|
177
|
+
|
|
178
|
+
if (error) {
|
|
179
|
+
const message = getErrorMessage(error)
|
|
180
|
+
showToast("error", message)
|
|
181
|
+
return
|
|
182
|
+
}
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
### **✅ Error Boundaries (React)**
|
|
186
|
+
```typescript
|
|
187
|
+
// app/client/src/components/ErrorBoundary.tsx
|
|
188
|
+
export class ErrorBoundary extends Component {
|
|
189
|
+
constructor(props) {
|
|
190
|
+
super(props)
|
|
191
|
+
this.state = { hasError: false }
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
static getDerivedStateFromError(error) {
|
|
195
|
+
return { hasError: true }
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
componentDidCatch(error, errorInfo) {
|
|
199
|
+
console.error('Error Boundary:', error, errorInfo)
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
render() {
|
|
203
|
+
if (this.state.hasError) {
|
|
204
|
+
return <div>Algo deu errado. Tente recarregar a página.</div>
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
return this.props.children
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
## 📁 **Estrutura de Arquivos**
|
|
213
|
+
|
|
214
|
+
### **✅ Organização Recomendada**
|
|
215
|
+
```
|
|
216
|
+
app/
|
|
217
|
+
├── shared/
|
|
218
|
+
│ └── types/
|
|
219
|
+
│ ├── index.ts # Re-exports principais
|
|
220
|
+
│ ├── user.ts # Types de usuário
|
|
221
|
+
│ ├── product.ts # Types de produto
|
|
222
|
+
│ └── common.ts # Types compartilhados
|
|
223
|
+
├── server/
|
|
224
|
+
│ ├── controllers/
|
|
225
|
+
│ │ ├── users.controller.ts
|
|
226
|
+
│ │ └── products.controller.ts
|
|
227
|
+
│ ├── routes/
|
|
228
|
+
│ │ ├── index.ts # Agregador de rotas
|
|
229
|
+
│ │ ├── users.routes.ts
|
|
230
|
+
│ │ └── products.routes.ts
|
|
231
|
+
│ └── app.ts # Export para Eden Treaty
|
|
232
|
+
└── client/
|
|
233
|
+
├── src/
|
|
234
|
+
│ ├── components/ # Componentes UI
|
|
235
|
+
│ ├── hooks/ # Hooks personalizados
|
|
236
|
+
│ ├── lib/ # Utilitários (Eden Treaty)
|
|
237
|
+
│ ├── pages/ # Páginas principais
|
|
238
|
+
│ └── utils/ # Funções auxiliares
|
|
239
|
+
└── public/ # Assets estáticos
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
## 🧪 **Padrões de Testing**
|
|
243
|
+
|
|
244
|
+
### **✅ Teste de API (Vitest)**
|
|
245
|
+
```typescript
|
|
246
|
+
// tests/api/products.test.ts
|
|
247
|
+
import { describe, it, expect } from 'vitest'
|
|
248
|
+
import { api } from '@/client/lib/eden-api'
|
|
249
|
+
|
|
250
|
+
describe('Products API', () => {
|
|
251
|
+
it('should create and retrieve product', async () => {
|
|
252
|
+
const { data: createResult, error: createError } = await api.products.post({
|
|
253
|
+
name: "Test Product",
|
|
254
|
+
price: 29.99
|
|
255
|
+
})
|
|
256
|
+
|
|
257
|
+
expect(createError).toBeUndefined()
|
|
258
|
+
expect(createResult.success).toBe(true)
|
|
259
|
+
|
|
260
|
+
const { data: getResult, error: getError } = await api.products.get()
|
|
261
|
+
expect(getError).toBeUndefined()
|
|
262
|
+
expect(getResult.products).toContainEqual(
|
|
263
|
+
expect.objectContaining({ name: "Test Product" })
|
|
264
|
+
)
|
|
265
|
+
})
|
|
266
|
+
})
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
### **✅ Teste de Hook (React Testing Library)**
|
|
270
|
+
```typescript
|
|
271
|
+
// tests/hooks/useProducts.test.ts
|
|
272
|
+
import { renderHook, waitFor } from '@testing-library/react'
|
|
273
|
+
import { useProducts } from '@/client/hooks/useProducts'
|
|
274
|
+
|
|
275
|
+
describe('useProducts', () => {
|
|
276
|
+
it('should load products', async () => {
|
|
277
|
+
const { result } = renderHook(() => useProducts())
|
|
278
|
+
|
|
279
|
+
await waitFor(() => {
|
|
280
|
+
expect(result.current.loading).toBe(false)
|
|
281
|
+
})
|
|
282
|
+
|
|
283
|
+
expect(result.current.products).toBeInstanceOf(Array)
|
|
284
|
+
})
|
|
285
|
+
})
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
## 🚀 **Comandos de Desenvolvimento**
|
|
289
|
+
|
|
290
|
+
### **✅ Desenvolvimento Local**
|
|
291
|
+
```bash
|
|
292
|
+
# Servidor completo (recomendado)
|
|
293
|
+
bun run dev
|
|
294
|
+
|
|
295
|
+
# Output limpo (sem logs HEAD do Elysia)
|
|
296
|
+
bun run dev:clean
|
|
297
|
+
|
|
298
|
+
# Apenas backend (porta 3001)
|
|
299
|
+
bun run dev:backend
|
|
300
|
+
|
|
301
|
+
# Apenas frontend (porta 5173)
|
|
302
|
+
bun run dev:frontend
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
### **✅ Build e Produção**
|
|
306
|
+
```bash
|
|
307
|
+
# Build completo
|
|
308
|
+
bun run build
|
|
309
|
+
|
|
310
|
+
# Servidor de produção
|
|
311
|
+
bun run start
|
|
312
|
+
|
|
313
|
+
# Testes
|
|
314
|
+
bun run test
|
|
315
|
+
bun run test:ui
|
|
316
|
+
bun run test:coverage
|
|
317
|
+
|
|
318
|
+
# Verificação de tipos
|
|
319
|
+
bunx tsc --noEmit
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
## 🔍 **Debugging e Troubleshooting**
|
|
323
|
+
|
|
324
|
+
### **✅ Logs Úteis**
|
|
325
|
+
```typescript
|
|
326
|
+
// Server-side debugging
|
|
327
|
+
console.log('Controller input:', body)
|
|
328
|
+
console.log('Controller output:', result)
|
|
329
|
+
|
|
330
|
+
// Client-side debugging
|
|
331
|
+
console.log('API call:', { endpoint: 'products', data })
|
|
332
|
+
console.log('API response:', { data, error })
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
### **✅ Verificações Comuns**
|
|
336
|
+
```bash
|
|
337
|
+
# 1. API funcionando?
|
|
338
|
+
curl http://localhost:3000/api/health
|
|
339
|
+
|
|
340
|
+
# 2. Swagger funcionando?
|
|
341
|
+
open http://localhost:3000/swagger
|
|
342
|
+
|
|
343
|
+
# 3. Frontend conectando?
|
|
344
|
+
open http://localhost:5173
|
|
345
|
+
|
|
346
|
+
# 4. Types corretos?
|
|
347
|
+
bunx tsc --noEmit
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
### **✅ Problemas Frequentes**
|
|
351
|
+
- **Types `unknown`**: Verificar response schemas nas rotas
|
|
352
|
+
- **CORS errors**: API e frontend em portas diferentes (normal)
|
|
353
|
+
- **404 na API**: Verificar prefix das rotas
|
|
354
|
+
- **Build errors**: Verificar imports e paths
|
|
355
|
+
|
|
356
|
+
## 📈 **Performance e Otimização**
|
|
357
|
+
|
|
358
|
+
### **✅ Boas Práticas**
|
|
359
|
+
```typescript
|
|
360
|
+
// 1. Memo para componentes caros
|
|
361
|
+
const ProductCard = memo(({ product }) => {
|
|
362
|
+
return <div>{product.name}</div>
|
|
363
|
+
})
|
|
364
|
+
|
|
365
|
+
// 2. useCallback para funções
|
|
366
|
+
const handleDelete = useCallback((id: number) => {
|
|
367
|
+
deleteProduct(id)
|
|
368
|
+
}, [deleteProduct])
|
|
369
|
+
|
|
370
|
+
// 3. Lazy loading para rotas
|
|
371
|
+
const ProductsPage = lazy(() => import('./pages/ProductsPage'))
|
|
372
|
+
|
|
373
|
+
// 4. Debounce para search
|
|
374
|
+
const debouncedSearch = useMemo(
|
|
375
|
+
() => debounce(searchProducts, 300),
|
|
376
|
+
[searchProducts]
|
|
377
|
+
)
|
|
378
|
+
```
|
|
379
|
+
|
|
380
|
+
---
|
|
381
|
+
|
|
382
|
+
**🎯 Seguindo estes padrões, você desenvolve features rapidamente com type safety garantida e código de alta qualidade!**
|