@polymorphism-tech/morph-spec 4.3.3 → 4.3.4
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/.morph/analytics/threads-log.jsonl +9 -0
- package/{stacks/blazor-azure/.morph → .morph}/config/config.json +9 -9
- package/.morph/state.json +48 -0
- package/bin/detect-agents.js +1 -2
- package/bin/morph-spec.js +2 -15
- package/{stacks/blazor-azure/.morph/config → framework}/agents.json +948 -948
- package/{stacks/nextjs-supabase/.claude → framework}/commands/morph-infra.md +1 -1
- package/framework/hooks/README.md +282 -0
- package/framework/hooks/agent-stop/validate-and-continue.js +96 -0
- package/framework/hooks/agent-stop/validate-checkpoints.js +101 -0
- package/framework/hooks/agent-stop/validate-tests.js +109 -0
- package/framework/hooks/agent-teams/dispatch.js +67 -0
- package/framework/hooks/agent-teams/phase-advanced.js +80 -0
- package/framework/hooks/agent-teams/task-completed.js +76 -0
- package/framework/hooks/agent-teams/teammate-idle.js +70 -0
- package/framework/hooks/commit-msg/conventional-commits.sh +33 -0
- package/framework/hooks/pre-commit/agents.sh +25 -0
- package/framework/hooks/pre-commit/orchestrator.sh +64 -0
- package/framework/hooks/pre-commit/specs.sh +50 -0
- package/framework/hooks/pre-push/run-tests.sh +44 -0
- package/framework/index/troubleshooting-index.json +184 -0
- package/framework/memory/patterns-learned.md +766 -0
- package/framework/skills/level-0-meta/README.md +7 -0
- package/framework/skills/level-0-meta/code-review.md +226 -0
- package/framework/skills/level-0-meta/morph-checklist.md +117 -0
- package/framework/skills/level-0-meta/simulation-checklist.md +77 -0
- package/framework/skills/level-1-workflows/README.md +7 -0
- package/framework/skills/level-1-workflows/morph-replicate.md +213 -0
- package/framework/skills/level-1-workflows/phase-clarify.md +131 -0
- package/framework/skills/level-1-workflows/phase-design.md +213 -0
- package/framework/skills/level-1-workflows/phase-setup.md +106 -0
- package/framework/skills/level-1-workflows/phase-tasks.md +164 -0
- package/framework/skills/level-1-workflows/phase-uiux.md +169 -0
- package/framework/skills/level-2-domains/README.md +14 -0
- package/framework/skills/level-2-domains/ai-agents/ai-system-architect.md +192 -0
- package/framework/skills/level-2-domains/architecture/po-pm-advisor.md +197 -0
- package/framework/skills/level-2-domains/architecture/prompt-engineer.md +189 -0
- package/framework/skills/level-2-domains/architecture/seo-growth-hacker.md +320 -0
- package/framework/skills/level-2-domains/architecture/standards-architect.md +156 -0
- package/framework/skills/level-2-domains/backend/api-designer.md +59 -0
- package/framework/skills/level-2-domains/backend/dotnet-senior.md +77 -0
- package/framework/skills/level-2-domains/backend/ef-modeler.md +58 -0
- package/framework/skills/level-2-domains/backend/hangfire-orchestrator.md +126 -0
- package/framework/skills/level-2-domains/backend/ms-agent-expert.md +45 -0
- package/framework/skills/level-2-domains/frontend/blazor-builder.md +210 -0
- package/framework/skills/level-2-domains/frontend/nextjs-expert.md +154 -0
- package/framework/skills/level-2-domains/frontend/ui-ux-designer.md +191 -0
- package/framework/skills/level-2-domains/infrastructure/azure-architect.md +142 -0
- package/framework/skills/level-2-domains/infrastructure/azure-deploy-specialist.md +699 -0
- package/framework/skills/level-2-domains/infrastructure/bicep-architect.md +126 -0
- package/framework/skills/level-2-domains/infrastructure/container-specialist.md +131 -0
- package/framework/skills/level-2-domains/infrastructure/devops-engineer.md +119 -0
- package/framework/skills/level-2-domains/integrations/asaas-financial.md +130 -0
- package/framework/skills/level-2-domains/integrations/azure-identity.md +142 -0
- package/framework/skills/level-2-domains/integrations/clerk-auth.md +108 -0
- package/framework/skills/level-2-domains/integrations/hangfire-orchestrator.md +64 -0
- package/framework/skills/level-2-domains/integrations/resend-email.md +119 -0
- package/framework/skills/level-2-domains/quality/code-analyzer.md +235 -0
- package/framework/skills/level-2-domains/quality/testing-specialist.md +126 -0
- package/framework/skills/level-3-technologies/README.md +7 -0
- package/framework/skills/level-4-patterns/README.md +7 -0
- package/framework/squad-templates/backend-only.json +34 -0
- package/framework/squad-templates/frontend-only.json +34 -0
- package/framework/squad-templates/full-stack.json +52 -0
- package/framework/templates/.idea/morph-templates.xml +92 -0
- package/framework/templates/.vscode/morph-templates.code-snippets +186 -0
- package/framework/templates/IDE-SNIPPETS.md +266 -0
- package/framework/templates/README.md +814 -0
- package/framework/templates/REGISTRY.json +1677 -0
- package/framework/templates/code/dotnet/backend/repository.cs +141 -0
- package/framework/templates/code/dotnet/backend/service.cs +139 -0
- package/framework/templates/code/dotnet/contracts/Commands.cs +74 -0
- package/framework/templates/code/dotnet/contracts/Entities.cs +25 -0
- package/framework/templates/code/dotnet/contracts/Queries.cs +74 -0
- package/framework/templates/code/dotnet/contracts/README.md +74 -0
- package/framework/templates/code/dotnet/contracts/api-contracts.cs +173 -0
- package/framework/templates/code/dotnet/contracts/contracts.cs +217 -0
- package/framework/templates/code/dotnet/database/migration.cs +83 -0
- package/framework/templates/code/dotnet/frontend/component.razor +239 -0
- package/framework/templates/code/dotnet/jobs/agent.cs +163 -0
- package/framework/templates/code/dotnet/jobs/job.cs +171 -0
- package/framework/templates/code/dotnet/test.cs +239 -0
- package/framework/templates/code/sql/rls-policy.sql +57 -0
- package/framework/templates/code/sql/supabase-migration.sql +100 -0
- package/framework/templates/code/sql/supabase-migration.template.sql +113 -0
- package/framework/templates/code/typescript/contracts.ts +168 -0
- package/framework/templates/context/CONTEXT-FEATURE.md +276 -0
- package/framework/templates/context/CONTEXT.md +181 -0
- package/framework/templates/docs/proposal.md +182 -0
- package/framework/templates/docs/spec.md +149 -0
- package/framework/templates/examples/design-system-examples.md +357 -0
- package/framework/templates/examples/spec-examples.md +90 -0
- package/framework/templates/feature/decisions.md +187 -0
- package/framework/templates/feature/recap.md +146 -0
- package/framework/templates/feature/tasks.md +199 -0
- package/framework/templates/infrastructure/azure/Dockerfile.example +82 -0
- package/framework/templates/infrastructure/azure/README.md +286 -0
- package/framework/templates/infrastructure/azure/app-insights.bicep +63 -0
- package/framework/templates/infrastructure/azure/app-service.bicep +164 -0
- package/framework/templates/infrastructure/azure/container-app-env.bicep +49 -0
- package/framework/templates/infrastructure/azure/container-app.bicep +156 -0
- package/framework/templates/infrastructure/azure/deploy-checklist.md +426 -0
- package/framework/templates/infrastructure/azure/deploy.ps1 +229 -0
- package/framework/templates/infrastructure/azure/deploy.sh +208 -0
- package/framework/templates/infrastructure/azure/key-vault.bicep +91 -0
- package/framework/templates/infrastructure/azure/main.bicep +189 -0
- package/framework/templates/infrastructure/azure/parameters.dev.json +29 -0
- package/framework/templates/infrastructure/azure/parameters.prod.json +29 -0
- package/framework/templates/infrastructure/azure/parameters.staging.json +29 -0
- package/framework/templates/infrastructure/azure/sql-database.bicep +103 -0
- package/framework/templates/infrastructure/azure/storage.bicep +106 -0
- package/framework/templates/infrastructure/docker/Dockerfile.template +58 -0
- package/framework/templates/infrastructure/docker/docker-compose.template.yml +67 -0
- package/framework/templates/infrastructure/docker/dockerfile-api.dockerfile +38 -0
- package/framework/templates/infrastructure/docker/dockerfile-web.dockerfile +48 -0
- package/framework/templates/infrastructure/docker/easypanel.template.json +54 -0
- package/framework/templates/infrastructure/github/README.md +593 -0
- package/framework/templates/infrastructure/github/actions/azure-auth/action.yml.hbs +22 -0
- package/framework/templates/infrastructure/github/actions/docker-build-push/action.yml.hbs +45 -0
- package/framework/templates/infrastructure/github/actions/health-check/action.yml.hbs +27 -0
- package/framework/templates/infrastructure/github/workflows/deploy-azure-app-service.yml.hbs +61 -0
- package/framework/templates/infrastructure/github/workflows/deploy-easypanel.yml.hbs +31 -0
- package/framework/templates/infrastructure/github/workflows/docker-build-push.yml.hbs +59 -0
- package/framework/templates/infrastructure/github/workflows/dotnet-build.yml.hbs +39 -0
- package/framework/templates/integrations/asaas-client.cs +387 -0
- package/framework/templates/integrations/asaas-webhook.cs +351 -0
- package/framework/templates/integrations/azure-identity-config.cs +288 -0
- package/framework/templates/integrations/clerk-config.cs +258 -0
- package/framework/templates/meta-prompts/fusion/fusion-agent.md +76 -0
- package/framework/templates/meta-prompts/fusion/fusion-aggregator.md +100 -0
- package/framework/templates/meta-prompts/hops/hop-retry.md +78 -0
- package/framework/templates/meta-prompts/hops/hop-validation.md +97 -0
- package/framework/templates/meta-prompts/hops/hop-wrapper.md +36 -0
- package/framework/templates/meta-prompts/parallel-workers/parallel-coordinator.md +113 -0
- package/framework/templates/meta-prompts/parallel-workers/parallel-worker.md +80 -0
- package/framework/templates/meta-prompts/squad-leaders/backend-squad.md +90 -0
- package/framework/templates/meta-prompts/squad-leaders/frontend-squad.md +126 -0
- package/framework/templates/meta-prompts/squad-leaders/squad-leader.md +43 -0
- package/framework/templates/meta-prompts/validators/checkpoint-validator.md +107 -0
- package/framework/templates/meta-prompts/validators/pre-commit-validator.md +95 -0
- package/framework/templates/saas/subscription.cs +347 -0
- package/framework/templates/saas/tenant.cs +338 -0
- package/framework/templates/state.template.json +17 -0
- package/framework/templates/ui/FluentDesignTheme.cs +149 -0
- package/framework/templates/ui/MudTheme.cs +281 -0
- package/framework/templates/ui/design-system.css +226 -0
- package/framework/workflows/README.md +1041 -0
- package/framework/workflows/configs/design-impl.json +49 -0
- package/framework/workflows/configs/fast-track.json +42 -0
- package/framework/workflows/configs/full-morph.json +79 -0
- package/framework/workflows/configs/fusion.json +39 -0
- package/framework/workflows/configs/long-running.json +33 -0
- package/framework/workflows/configs/standard.json +60 -0
- package/framework/workflows/configs/ui-refresh.json +49 -0
- package/framework/workflows/configs/zero-touch.json +75 -0
- package/framework/workflows/docs/STORY-DRIVEN-DEVELOPMENT.md +392 -0
- package/framework/workflows/docs/design-impl.md +37 -0
- package/framework/workflows/docs/enforcement-pipeline.md +668 -0
- package/framework/workflows/docs/fast-track.md +29 -0
- package/framework/workflows/docs/full-morph.md +76 -0
- package/framework/workflows/docs/standard.md +44 -0
- package/framework/workflows/docs/ui-refresh.md +39 -0
- package/package.json +3 -3
- package/src/commands/feature/create-story.js +11 -7
- package/src/commands/project/detect-agents.js +1 -2
- package/src/commands/project/init.js +69 -32
- package/src/commands/project/update.js +2 -2
- package/src/commands/templates/template-customize.js +3 -17
- package/src/commands/templates/template-list.js +1 -15
- package/src/commands/templates/template-render.js +2 -3
- package/src/commands/templates/template-show.js +3 -5
- package/src/core/templates/template-registry.js +9 -23
- package/src/lib/detectors/structure-detector.js +3 -3
- package/src/lib/generators/context-generator.js +18 -6
- package/src/lib/hooks/hook-executor.js +0 -2
- package/src/lib/orchestration/team-orchestrator.js +1 -2
- package/src/lib/standards/standards-context-injector.js +3 -4
- package/src/lib/troubleshooting/troubleshoot-grep.js +3 -9
- package/src/lib/validators/validation-runner.js +1 -2
- package/src/utils/file-copier.js +1 -2
- package/docs/README.md +0 -144
- package/docs/api/fonts/Montserrat/Montserrat-Bold.eot +0 -0
- package/docs/api/fonts/Montserrat/Montserrat-Bold.ttf +0 -0
- package/docs/api/fonts/Montserrat/Montserrat-Bold.woff +0 -0
- package/docs/api/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
- package/docs/api/fonts/Montserrat/Montserrat-Regular.eot +0 -0
- package/docs/api/fonts/Montserrat/Montserrat-Regular.ttf +0 -0
- package/docs/api/fonts/Montserrat/Montserrat-Regular.woff +0 -0
- package/docs/api/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.eot +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.svg +0 -978
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.ttf +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-light-webfont.woff2 +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.eot +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.svg +0 -1049
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.ttf +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff +0 -0
- package/docs/api/fonts/Source-Sans-Pro/sourcesanspro-regular-webfont.woff2 +0 -0
- package/docs/api/scripts/collapse.js +0 -39
- package/docs/api/scripts/commonNav.js +0 -28
- package/docs/api/scripts/linenumber.js +0 -25
- package/docs/api/scripts/nav.js +0 -12
- package/docs/api/scripts/polyfill.js +0 -4
- package/docs/api/scripts/prettify/Apache-License-2.0.txt +0 -202
- package/docs/api/scripts/prettify/lang-css.js +0 -2
- package/docs/api/scripts/prettify/prettify.js +0 -28
- package/docs/api/scripts/search.js +0 -99
- package/docs/api/styles/jsdoc.css +0 -776
- package/docs/api/styles/prettify.css +0 -80
- package/docs/cli-auto-detection.md +0 -219
- package/docs/getting-started.md +0 -296
- package/docs/installation.md +0 -361
- package/docs/next-generation/AGENTS.md +0 -521
- package/docs/next-generation/ANALYSIS.md +0 -555
- package/docs/next-generation/ARCHITECTURE.md +0 -436
- package/docs/next-generation/CONTEXT-OPTIMIZATION.md +0 -267
- package/docs/next-generation/EXECUTION-FLOW.md +0 -274
- package/docs/next-generation/FEATURES.md +0 -688
- package/docs/next-generation/META-PROMPTS.md +0 -235
- package/docs/next-generation/MIGRATION-GUIDE.md +0 -253
- package/docs/next-generation/README.md +0 -231
- package/docs/next-generation/ROADMAP.md +0 -801
- package/docs/next-generation/THREAD-MANAGEMENT.md +0 -240
- package/docs/templates.md +0 -418
- package/docs/troubleshooting.md +0 -269
- package/docs/validation-checklist.md +0 -264
- package/scripts/postinstall.js +0 -132
- package/src/lib/stacks/index.js +0 -7
- package/src/lib/stacks/stack-resolver.js +0 -180
- package/stacks/blazor-azure/.claude/commands/morph-deploy.md +0 -529
- package/stacks/blazor-azure/.claude/commands/morph-infra.md +0 -209
- package/stacks/blazor-azure/.morph/.morphversion +0 -5
- package/stacks/blazor-azure/.morph/project/context/README.md +0 -17
- package/stacks/blazor-azure/CLAUDE.md +0 -155
- package/stacks/blazor-azure/README.md +0 -79
- package/stacks/nextjs-supabase/.claude/commands/morph-apply.md +0 -221
- package/stacks/nextjs-supabase/.claude/commands/morph-archive.md +0 -79
- package/stacks/nextjs-supabase/.claude/commands/morph-deploy.md +0 -529
- package/stacks/nextjs-supabase/.claude/commands/morph-preflight.md +0 -227
- package/stacks/nextjs-supabase/.claude/commands/morph-proposal.md +0 -122
- package/stacks/nextjs-supabase/.claude/commands/morph-status.md +0 -86
- package/stacks/nextjs-supabase/.claude/commands/morph-troubleshoot.md +0 -122
- package/stacks/nextjs-supabase/.morph/.morphversion +0 -5
- package/stacks/nextjs-supabase/.morph/config/agents.json +0 -345
- package/stacks/nextjs-supabase/.morph/config/config.json +0 -9
- package/stacks/nextjs-supabase/.morph/project/context/README.md +0 -17
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/blazor-ui.md +0 -364
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/production.md +0 -415
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/setup.md +0 -418
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/team-orchestration.md +0 -479
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/workflows.md +0 -354
- package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/aggregates.md +0 -120
- package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/entities.md +0 -99
- package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/value-objects.md +0 -124
- package/stacks/nextjs-supabase/.morph/standards/backend/api/minimal-api.md +0 -494
- package/stacks/nextjs-supabase/.morph/standards/backend/api/rest.md +0 -492
- package/stacks/nextjs-supabase/.morph/standards/backend/api/validation.md +0 -88
- package/stacks/nextjs-supabase/.morph/standards/backend/authentication/passkeys.md +0 -428
- package/stacks/nextjs-supabase/.morph/standards/backend/database/ef-core.md +0 -199
- package/stacks/nextjs-supabase/.morph/standards/backend/database/migrations.md +0 -393
- package/stacks/nextjs-supabase/.morph/standards/backend/database/postgresql/database.md +0 -352
- package/stacks/nextjs-supabase/.morph/standards/backend/database/repository-patterns.md +0 -528
- package/stacks/nextjs-supabase/.morph/standards/backend/database/vector-search-rag.md +0 -541
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/async.md +0 -366
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/core.md +0 -117
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/di.md +0 -439
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/program-cs-checklist.md +0 -92
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/asaas/asaas-api.md +0 -216
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/clerk/clerk-auth.md +0 -290
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/hangfire/hangfire-jobs.md +0 -350
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/resend/resend-email.md +0 -385
- package/stacks/nextjs-supabase/.morph/standards/context/analytics.md +0 -96
- package/stacks/nextjs-supabase/.morph/standards/context/bundles.md +0 -110
- package/stacks/nextjs-supabase/.morph/standards/context/priming.md +0 -78
- package/stacks/nextjs-supabase/.morph/standards/core/architecture.md +0 -185
- package/stacks/nextjs-supabase/.morph/standards/core/coding.md +0 -214
- package/stacks/nextjs-supabase/.morph/standards/core/git-branching-strategy.md +0 -403
- package/stacks/nextjs-supabase/.morph/standards/core/git.md +0 -185
- package/stacks/nextjs-supabase/.morph/standards/core/testing.md +0 -295
- package/stacks/nextjs-supabase/.morph/standards/data/nosql/blob-storage.md +0 -102
- package/stacks/nextjs-supabase/.morph/standards/data/nosql/cache/redis.md +0 -97
- package/stacks/nextjs-supabase/.morph/standards/data/nosql/cosmos-db.md +0 -118
- package/stacks/nextjs-supabase/.morph/standards/data/vector-search/azure-ai-search.md +0 -121
- package/stacks/nextjs-supabase/.morph/standards/data/vector-search/rag-chunking.md +0 -104
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/design-checklist.md +0 -222
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/fluent-ui-setup.md +0 -595
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/fluent-ui.md +0 -137
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/html-conversion.md +0 -184
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/lifecycle.md +0 -195
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/pitfalls.md +0 -198
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/state.md +0 -191
- package/stacks/nextjs-supabase/.morph/standards/frontend/design-system/animations.md +0 -151
- package/stacks/nextjs-supabase/.morph/standards/frontend/design-system/naming.md +0 -64
- package/stacks/nextjs-supabase/.morph/standards/frontend/nextjs/nextjs-patterns.md +0 -198
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/azure.md +0 -624
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/bicep/bicep-patterns.md +0 -422
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/devops/azure-devops-setup.md +0 -516
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/devops/local-development.md +0 -520
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/functions.md +0 -486
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/service-bus.md +0 -459
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/storage.md +0 -407
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/docker/easypanel-deploy.md +0 -196
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/mcp-setup.md +0 -252
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-auth.md +0 -176
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-pgvector.md +0 -169
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-rls.md +0 -184
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-storage.md +0 -153
- package/stacks/nextjs-supabase/.morph/standards/integration/api/graphql.md +0 -91
- package/stacks/nextjs-supabase/.morph/standards/integration/api/grpc.md +0 -114
- package/stacks/nextjs-supabase/.morph/standards/integration/api/rest-design.md +0 -95
- package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/cqrs.md +0 -101
- package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/event-sourcing.md +0 -124
- package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/service-bus.md +0 -95
- package/stacks/nextjs-supabase/.morph/standards/observability/logging.md +0 -131
- package/stacks/nextjs-supabase/.morph/standards/observability/metrics.md +0 -121
- package/stacks/nextjs-supabase/.morph/standards/observability/monitoring.md +0 -114
- package/stacks/nextjs-supabase/.morph/standards/observability/tracing.md +0 -132
- package/stacks/nextjs-supabase/.morph/standards/workflows/parallel-execution.md +0 -112
- package/stacks/nextjs-supabase/.morph/standards/workflows/thread-management.md +0 -113
- package/stacks/nextjs-supabase/CLAUDE.md +0 -155
- package/stacks/nextjs-supabase/README.md +0 -103
- /package/{stacks/blazor-azure/.claude → framework}/commands/morph-apply.md +0 -0
- /package/{stacks/blazor-azure/.claude → framework}/commands/morph-archive.md +0 -0
- /package/{stacks/blazor-azure/.claude → framework}/commands/morph-preflight.md +0 -0
- /package/{stacks/blazor-azure/.claude → framework}/commands/morph-proposal.md +0 -0
- /package/{stacks/blazor-azure/.claude → framework}/commands/morph-status.md +0 -0
- /package/{stacks/blazor-azure/.claude → framework}/commands/morph-troubleshoot.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/ai-agents/blazor-ui.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/ai-agents/production.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/ai-agents/setup.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/ai-agents/team-orchestration.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/ai-agents/workflows.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/architecture/ddd/aggregates.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/architecture/ddd/entities.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/architecture/ddd/value-objects.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/api/minimal-api.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/api/rest.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/api/validation.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/authentication/passkeys.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/database/ef-core.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/database/migrations.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/database/postgresql/database.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/database/repository-patterns.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/database/vector-search-rag.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/dotnet/async.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/dotnet/core.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/dotnet/di.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/dotnet/program-cs-checklist.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/integrations/asaas/asaas-api.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/integrations/clerk/clerk-auth.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/integrations/hangfire/hangfire-jobs.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/backend/integrations/resend/resend-email.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/context/analytics.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/context/bundles.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/context/priming.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/core/architecture.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/core/coding.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/core/git-branching-strategy.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/core/git.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/core/testing.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/data/nosql/blob-storage.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/data/nosql/cache/redis.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/data/nosql/cosmos-db.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/data/vector-search/azure-ai-search.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/data/vector-search/rag-chunking.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/blazor/design-checklist.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/blazor/fluent-ui-setup.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/blazor/fluent-ui.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/blazor/html-conversion.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/blazor/lifecycle.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/blazor/pitfalls.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/blazor/state.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/design-system/animations.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/design-system/naming.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/frontend/nextjs/nextjs-patterns.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/azure/azure.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/azure/bicep/bicep-patterns.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/azure/devops/azure-devops-setup.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/azure/devops/local-development.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/azure/services/functions.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/azure/services/service-bus.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/azure/services/storage.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/docker/easypanel-deploy.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/supabase/mcp-setup.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/supabase/supabase-auth.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/supabase/supabase-pgvector.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/supabase/supabase-rls.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/infrastructure/supabase/supabase-storage.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/integration/api/graphql.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/integration/api/grpc.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/integration/api/rest-design.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/integration/event-driven/cqrs.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/integration/event-driven/event-sourcing.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/integration/event-driven/service-bus.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/observability/logging.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/observability/metrics.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/observability/monitoring.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/observability/tracing.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/workflows/parallel-execution.md +0 -0
- /package/{stacks/blazor-azure/.morph → framework}/standards/workflows/thread-management.md +0 -0
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# ==============================================================================
|
|
3
|
+
# MORPH-SPEC - Deploy Script
|
|
4
|
+
# Automated deployment of Azure infrastructure
|
|
5
|
+
# ==============================================================================
|
|
6
|
+
|
|
7
|
+
set -e # Exit on error
|
|
8
|
+
|
|
9
|
+
# ==============================================================================
|
|
10
|
+
# CONFIGURATION
|
|
11
|
+
# ==============================================================================
|
|
12
|
+
|
|
13
|
+
# Required variables (override via environment)
|
|
14
|
+
APP_NAME="${APP_NAME:-myapp}"
|
|
15
|
+
ENVIRONMENT="${ENVIRONMENT:-dev}"
|
|
16
|
+
LOCATION="${LOCATION:-eastus}"
|
|
17
|
+
SUBSCRIPTION_ID="${SUBSCRIPTION_ID:-}"
|
|
18
|
+
|
|
19
|
+
# Optional variables
|
|
20
|
+
HOSTING_TYPE="${HOSTING_TYPE:-appservice}" # appservice or containerapp
|
|
21
|
+
APP_SERVICE_SKU="${APP_SERVICE_SKU:-F1}"
|
|
22
|
+
CONTAINER_IMAGE="${CONTAINER_IMAGE:-mcr.microsoft.com/hello-world:latest}"
|
|
23
|
+
|
|
24
|
+
# Derived variables
|
|
25
|
+
RESOURCE_GROUP="rg-${APP_NAME}-${ENVIRONMENT}"
|
|
26
|
+
DEPLOYMENT_NAME="deploy-${APP_NAME}-$(date +%Y%m%d-%H%M%S)"
|
|
27
|
+
|
|
28
|
+
# ==============================================================================
|
|
29
|
+
# COLORS
|
|
30
|
+
# ==============================================================================
|
|
31
|
+
|
|
32
|
+
RED='\033[0;31m'
|
|
33
|
+
GREEN='\033[0;32m'
|
|
34
|
+
YELLOW='\033[1;33m'
|
|
35
|
+
BLUE='\033[0;34m'
|
|
36
|
+
NC='\033[0m' # No Color
|
|
37
|
+
|
|
38
|
+
# ==============================================================================
|
|
39
|
+
# FUNCTIONS
|
|
40
|
+
# ==============================================================================
|
|
41
|
+
|
|
42
|
+
log_info() {
|
|
43
|
+
echo -e "${BLUE}ℹ️ $1${NC}"
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
log_success() {
|
|
47
|
+
echo -e "${GREEN}✅ $1${NC}"
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
log_warning() {
|
|
51
|
+
echo -e "${YELLOW}⚠️ $1${NC}"
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
log_error() {
|
|
55
|
+
echo -e "${RED}❌ $1${NC}"
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
check_prerequisites() {
|
|
59
|
+
log_info "Checking prerequisites..."
|
|
60
|
+
|
|
61
|
+
# Check Azure CLI
|
|
62
|
+
if ! command -v az &> /dev/null; then
|
|
63
|
+
log_error "Azure CLI not found. Install from: https://aka.ms/azure-cli"
|
|
64
|
+
exit 1
|
|
65
|
+
fi
|
|
66
|
+
|
|
67
|
+
# Check login
|
|
68
|
+
if ! az account show &> /dev/null; then
|
|
69
|
+
log_error "Not logged in to Azure. Run: az login"
|
|
70
|
+
exit 1
|
|
71
|
+
fi
|
|
72
|
+
|
|
73
|
+
# Set subscription if provided
|
|
74
|
+
if [ -n "$SUBSCRIPTION_ID" ]; then
|
|
75
|
+
log_info "Setting subscription to: $SUBSCRIPTION_ID"
|
|
76
|
+
az account set --subscription "$SUBSCRIPTION_ID"
|
|
77
|
+
fi
|
|
78
|
+
|
|
79
|
+
log_success "Prerequisites checked"
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
create_resource_group() {
|
|
83
|
+
log_info "Creating resource group: $RESOURCE_GROUP"
|
|
84
|
+
|
|
85
|
+
if az group exists -n "$RESOURCE_GROUP" | grep -q true; then
|
|
86
|
+
log_warning "Resource group already exists"
|
|
87
|
+
else
|
|
88
|
+
az group create \
|
|
89
|
+
--name "$RESOURCE_GROUP" \
|
|
90
|
+
--location "$LOCATION" \
|
|
91
|
+
--tags \
|
|
92
|
+
environment="$ENVIRONMENT" \
|
|
93
|
+
application="$APP_NAME" \
|
|
94
|
+
managedBy="bicep" \
|
|
95
|
+
framework="morph-spec"
|
|
96
|
+
|
|
97
|
+
log_success "Resource group created"
|
|
98
|
+
fi
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
generate_sql_password() {
|
|
102
|
+
# Generate secure random password
|
|
103
|
+
SQL_PASSWORD=$(openssl rand -base64 32 | tr -d "=+/" | cut -c1-25)
|
|
104
|
+
log_success "SQL password generated (stored in Key Vault after deploy)"
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
deploy_infrastructure() {
|
|
108
|
+
log_info "Deploying infrastructure..."
|
|
109
|
+
log_info " App Name: $APP_NAME"
|
|
110
|
+
log_info " Environment: $ENVIRONMENT"
|
|
111
|
+
log_info " Hosting Type: $HOSTING_TYPE"
|
|
112
|
+
log_info " Location: $LOCATION"
|
|
113
|
+
|
|
114
|
+
# Prepare parameters file
|
|
115
|
+
PARAMS_FILE="parameters.${ENVIRONMENT}.json"
|
|
116
|
+
|
|
117
|
+
if [ ! -f "$PARAMS_FILE" ]; then
|
|
118
|
+
log_error "Parameters file not found: $PARAMS_FILE"
|
|
119
|
+
exit 1
|
|
120
|
+
fi
|
|
121
|
+
|
|
122
|
+
# Deploy
|
|
123
|
+
az deployment group create \
|
|
124
|
+
--resource-group "$RESOURCE_GROUP" \
|
|
125
|
+
--name "$DEPLOYMENT_NAME" \
|
|
126
|
+
--template-file main.bicep \
|
|
127
|
+
--parameters "@$PARAMS_FILE" \
|
|
128
|
+
--parameters \
|
|
129
|
+
appName="$APP_NAME" \
|
|
130
|
+
environment="$ENVIRONMENT" \
|
|
131
|
+
location="$LOCATION" \
|
|
132
|
+
hostingType="$HOSTING_TYPE" \
|
|
133
|
+
appServiceSku="$APP_SERVICE_SKU" \
|
|
134
|
+
containerImage="$CONTAINER_IMAGE" \
|
|
135
|
+
sqlAdminPassword="$SQL_PASSWORD" \
|
|
136
|
+
--output table
|
|
137
|
+
|
|
138
|
+
log_success "Infrastructure deployed"
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
show_outputs() {
|
|
142
|
+
log_info "Retrieving deployment outputs..."
|
|
143
|
+
|
|
144
|
+
APP_URL=$(az deployment group show \
|
|
145
|
+
-g "$RESOURCE_GROUP" \
|
|
146
|
+
-n "$DEPLOYMENT_NAME" \
|
|
147
|
+
--query properties.outputs.appUrl.value -o tsv)
|
|
148
|
+
|
|
149
|
+
SQL_CONNECTION=$(az deployment group show \
|
|
150
|
+
-g "$RESOURCE_GROUP" \
|
|
151
|
+
-n "$DEPLOYMENT_NAME" \
|
|
152
|
+
--query properties.outputs.sqlConnectionString.value -o tsv)
|
|
153
|
+
|
|
154
|
+
APPINSIGHTS_CONNECTION=$(az deployment group show \
|
|
155
|
+
-g "$RESOURCE_GROUP" \
|
|
156
|
+
-n "$DEPLOYMENT_NAME" \
|
|
157
|
+
--query properties.outputs.appInsightsConnectionString.value -o tsv)
|
|
158
|
+
|
|
159
|
+
echo ""
|
|
160
|
+
echo "╔════════════════════════════════════════════════════════════════╗"
|
|
161
|
+
echo "║ DEPLOYMENT SUCCESSFUL ║"
|
|
162
|
+
echo "╚════════════════════════════════════════════════════════════════╝"
|
|
163
|
+
echo ""
|
|
164
|
+
echo "🌐 Application URL:"
|
|
165
|
+
echo " $APP_URL"
|
|
166
|
+
echo ""
|
|
167
|
+
echo "🗄️ SQL Connection String:"
|
|
168
|
+
echo " $SQL_CONNECTION"
|
|
169
|
+
echo ""
|
|
170
|
+
echo "📊 App Insights Connection String:"
|
|
171
|
+
echo " $APPINSIGHTS_CONNECTION"
|
|
172
|
+
echo ""
|
|
173
|
+
echo "💡 Next steps:"
|
|
174
|
+
|
|
175
|
+
if [ "$HOSTING_TYPE" = "appservice" ]; then
|
|
176
|
+
echo " 1. Deploy your code: az webapp up --name app-${APP_NAME}-${ENVIRONMENT}"
|
|
177
|
+
echo " 2. View logs: az webapp log tail --name app-${APP_NAME}-${ENVIRONMENT} -g $RESOURCE_GROUP"
|
|
178
|
+
else
|
|
179
|
+
echo " 1. Build and push container: az acr build --registry <ACR> --image ${APP_NAME}:latest ."
|
|
180
|
+
echo " 2. Update container app: az containerapp update -n ca-${APP_NAME}-${ENVIRONMENT} -g $RESOURCE_GROUP --image <IMAGE>"
|
|
181
|
+
echo " 3. View logs: az containerapp logs show -n ca-${APP_NAME}-${ENVIRONMENT} -g $RESOURCE_GROUP --follow"
|
|
182
|
+
fi
|
|
183
|
+
|
|
184
|
+
echo ""
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
# ==============================================================================
|
|
188
|
+
# MAIN
|
|
189
|
+
# ==============================================================================
|
|
190
|
+
|
|
191
|
+
main() {
|
|
192
|
+
echo ""
|
|
193
|
+
echo "╔════════════════════════════════════════════════════════════════╗"
|
|
194
|
+
echo "║ MORPH-SPEC - Azure Infrastructure Deploy ║"
|
|
195
|
+
echo "╚════════════════════════════════════════════════════════════════╝"
|
|
196
|
+
echo ""
|
|
197
|
+
|
|
198
|
+
check_prerequisites
|
|
199
|
+
create_resource_group
|
|
200
|
+
generate_sql_password
|
|
201
|
+
deploy_infrastructure
|
|
202
|
+
show_outputs
|
|
203
|
+
|
|
204
|
+
log_success "Deployment complete! 🚀"
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
# Run main function
|
|
208
|
+
main
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
// ==============================================================================
|
|
2
|
+
// MORPH-SPEC - Key Vault
|
|
3
|
+
// Azure Key Vault for secrets management
|
|
4
|
+
// ==============================================================================
|
|
5
|
+
|
|
6
|
+
@description('Key Vault name')
|
|
7
|
+
@minLength(3)
|
|
8
|
+
@maxLength(24)
|
|
9
|
+
param name string
|
|
10
|
+
|
|
11
|
+
@description('Location')
|
|
12
|
+
param location string
|
|
13
|
+
|
|
14
|
+
@description('Tags')
|
|
15
|
+
param tags object = {}
|
|
16
|
+
|
|
17
|
+
@description('Enable soft delete')
|
|
18
|
+
param enableSoftDelete bool = true
|
|
19
|
+
|
|
20
|
+
@description('Soft delete retention days')
|
|
21
|
+
@minValue(7)
|
|
22
|
+
@maxValue(90)
|
|
23
|
+
param softDeleteRetentionDays int = 30
|
|
24
|
+
|
|
25
|
+
@description('Enable purge protection')
|
|
26
|
+
param enablePurgeProtection bool = false
|
|
27
|
+
|
|
28
|
+
@description('Object IDs to grant access (optional)')
|
|
29
|
+
param accessPoliciesObjectIds array = []
|
|
30
|
+
|
|
31
|
+
// ==============================================================================
|
|
32
|
+
// KEY VAULT
|
|
33
|
+
// ==============================================================================
|
|
34
|
+
|
|
35
|
+
resource keyVault 'Microsoft.KeyVault/vaults@2023-07-01' = {
|
|
36
|
+
name: name
|
|
37
|
+
location: location
|
|
38
|
+
tags: tags
|
|
39
|
+
properties: {
|
|
40
|
+
tenantId: subscription().tenantId
|
|
41
|
+
sku: {
|
|
42
|
+
family: 'A'
|
|
43
|
+
name: 'standard'
|
|
44
|
+
}
|
|
45
|
+
enabledForDeployment: true
|
|
46
|
+
enabledForDiskEncryption: false
|
|
47
|
+
enabledForTemplateDeployment: true
|
|
48
|
+
enableSoftDelete: enableSoftDelete
|
|
49
|
+
softDeleteRetentionInDays: softDeleteRetentionDays
|
|
50
|
+
enablePurgeProtection: enablePurgeProtection ? true : null
|
|
51
|
+
enableRbacAuthorization: true
|
|
52
|
+
publicNetworkAccess: 'Enabled'
|
|
53
|
+
networkAcls: {
|
|
54
|
+
defaultAction: 'Allow'
|
|
55
|
+
bypass: 'AzureServices'
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// ==============================================================================
|
|
61
|
+
// ACCESS POLICIES (Optional - if not using RBAC)
|
|
62
|
+
// ==============================================================================
|
|
63
|
+
|
|
64
|
+
resource accessPolicies 'Microsoft.KeyVault/vaults/accessPolicies@2023-07-01' = if (length(accessPoliciesObjectIds) > 0) {
|
|
65
|
+
parent: keyVault
|
|
66
|
+
name: 'add'
|
|
67
|
+
properties: {
|
|
68
|
+
accessPolicies: [for objectId in accessPoliciesObjectIds: {
|
|
69
|
+
tenantId: subscription().tenantId
|
|
70
|
+
objectId: objectId
|
|
71
|
+
permissions: {
|
|
72
|
+
secrets: ['get', 'list', 'set', 'delete']
|
|
73
|
+
keys: ['get', 'list', 'create', 'delete']
|
|
74
|
+
certificates: ['get', 'list', 'create', 'delete']
|
|
75
|
+
}
|
|
76
|
+
}]
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// ==============================================================================
|
|
81
|
+
// OUTPUTS
|
|
82
|
+
// ==============================================================================
|
|
83
|
+
|
|
84
|
+
@description('Key Vault ID')
|
|
85
|
+
output id string = keyVault.id
|
|
86
|
+
|
|
87
|
+
@description('Key Vault name')
|
|
88
|
+
output name string = keyVault.name
|
|
89
|
+
|
|
90
|
+
@description('Key Vault URI')
|
|
91
|
+
output uri string = keyVault.properties.vaultUri
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
// ==============================================================================
|
|
2
|
+
// MORPH-SPEC - Main Bicep Template
|
|
3
|
+
// Entry point para infraestrutura Azure
|
|
4
|
+
// ==============================================================================
|
|
5
|
+
|
|
6
|
+
targetScope = 'resourceGroup'
|
|
7
|
+
|
|
8
|
+
// ==============================================================================
|
|
9
|
+
// PARAMETERS
|
|
10
|
+
// ==============================================================================
|
|
11
|
+
|
|
12
|
+
@description('Environment name (dev, staging, prod)')
|
|
13
|
+
@allowed(['dev', 'staging', 'prod'])
|
|
14
|
+
param environment string = 'dev'
|
|
15
|
+
|
|
16
|
+
@description('Location for all resources')
|
|
17
|
+
param location string = resourceGroup().location
|
|
18
|
+
|
|
19
|
+
@description('Application name (used for naming resources)')
|
|
20
|
+
@minLength(3)
|
|
21
|
+
@maxLength(15)
|
|
22
|
+
param appName string
|
|
23
|
+
|
|
24
|
+
@description('SQL Server administrator password')
|
|
25
|
+
@secure()
|
|
26
|
+
param sqlAdminPassword string
|
|
27
|
+
|
|
28
|
+
@description('Container image to deploy (only for Container Apps)')
|
|
29
|
+
param containerImage string = 'mcr.microsoft.com/hello-world:latest'
|
|
30
|
+
|
|
31
|
+
@description('Hosting type: appservice or containerapp')
|
|
32
|
+
@allowed(['appservice', 'containerapp'])
|
|
33
|
+
param hostingType string = 'appservice'
|
|
34
|
+
|
|
35
|
+
@description('App Service SKU (only for App Service hosting)')
|
|
36
|
+
@allowed(['F1', 'B1', 'S1', 'P1v2'])
|
|
37
|
+
param appServiceSku string = 'F1'
|
|
38
|
+
|
|
39
|
+
// ==============================================================================
|
|
40
|
+
// VARIABLES
|
|
41
|
+
// ==============================================================================
|
|
42
|
+
|
|
43
|
+
var resourcePrefix = '${appName}-${environment}'
|
|
44
|
+
var tags = {
|
|
45
|
+
environment: environment
|
|
46
|
+
application: appName
|
|
47
|
+
managedBy: 'bicep'
|
|
48
|
+
framework: 'morph-spec'
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// ==============================================================================
|
|
52
|
+
// LOG ANALYTICS WORKSPACE
|
|
53
|
+
// Required for Container Apps and Application Insights
|
|
54
|
+
// ==============================================================================
|
|
55
|
+
|
|
56
|
+
resource logAnalytics 'Microsoft.OperationalInsights/workspaces@2022-10-01' = {
|
|
57
|
+
name: '${resourcePrefix}-logs'
|
|
58
|
+
location: location
|
|
59
|
+
tags: tags
|
|
60
|
+
properties: {
|
|
61
|
+
sku: {
|
|
62
|
+
name: 'PerGB2018'
|
|
63
|
+
}
|
|
64
|
+
retentionInDays: environment == 'prod' ? 90 : 30
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// ==============================================================================
|
|
69
|
+
// MODULES
|
|
70
|
+
// ==============================================================================
|
|
71
|
+
|
|
72
|
+
// Application Insights
|
|
73
|
+
module appInsights 'app-insights.bicep' = {
|
|
74
|
+
name: 'appInsights-${uniqueString(resourceGroup().id)}'
|
|
75
|
+
params: {
|
|
76
|
+
name: '${resourcePrefix}-insights'
|
|
77
|
+
location: location
|
|
78
|
+
tags: tags
|
|
79
|
+
logAnalyticsWorkspaceId: logAnalytics.id
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Key Vault
|
|
84
|
+
module keyVault 'key-vault.bicep' = {
|
|
85
|
+
name: 'keyVault-${uniqueString(resourceGroup().id)}'
|
|
86
|
+
params: {
|
|
87
|
+
name: '${resourcePrefix}-kv'
|
|
88
|
+
location: location
|
|
89
|
+
tags: tags
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// Storage Account
|
|
94
|
+
module storage 'storage.bicep' = {
|
|
95
|
+
name: 'storage-${uniqueString(resourceGroup().id)}'
|
|
96
|
+
params: {
|
|
97
|
+
name: replace('${resourcePrefix}st', '-', '')
|
|
98
|
+
location: location
|
|
99
|
+
tags: tags
|
|
100
|
+
sku: environment == 'prod' ? 'Standard_GRS' : 'Standard_LRS'
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// SQL Database
|
|
105
|
+
module sqlDatabase 'sql-database.bicep' = {
|
|
106
|
+
name: 'sqlDatabase-${uniqueString(resourceGroup().id)}'
|
|
107
|
+
params: {
|
|
108
|
+
serverName: '${resourcePrefix}-sql'
|
|
109
|
+
databaseName: appName
|
|
110
|
+
location: location
|
|
111
|
+
tags: tags
|
|
112
|
+
adminPassword: sqlAdminPassword
|
|
113
|
+
useFree: environment == 'dev'
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
// ==============================================================================
|
|
118
|
+
// HOSTING - App Service (Conditional)
|
|
119
|
+
// ==============================================================================
|
|
120
|
+
|
|
121
|
+
module appService 'app-service.bicep' = if (hostingType == 'appservice') {
|
|
122
|
+
name: 'appService-${uniqueString(resourceGroup().id)}'
|
|
123
|
+
params: {
|
|
124
|
+
name: 'app-${resourcePrefix}'
|
|
125
|
+
location: location
|
|
126
|
+
tags: tags
|
|
127
|
+
sku: appServiceSku
|
|
128
|
+
appInsightsConnectionString: appInsights.outputs.connectionString
|
|
129
|
+
alwaysOn: appServiceSku != 'F1' // Only available on paid tiers
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// ==============================================================================
|
|
134
|
+
// HOSTING - Container Apps (Conditional)
|
|
135
|
+
// ==============================================================================
|
|
136
|
+
|
|
137
|
+
// Container Apps Environment
|
|
138
|
+
module containerAppEnv 'container-app-env.bicep' = if (hostingType == 'containerapp') {
|
|
139
|
+
name: 'containerAppEnv-${uniqueString(resourceGroup().id)}'
|
|
140
|
+
params: {
|
|
141
|
+
name: '${resourcePrefix}-env'
|
|
142
|
+
location: location
|
|
143
|
+
tags: tags
|
|
144
|
+
logAnalyticsWorkspaceId: logAnalytics.id
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// Container App
|
|
149
|
+
module containerApp 'container-app.bicep' = if (hostingType == 'containerapp') {
|
|
150
|
+
name: 'containerApp-${uniqueString(resourceGroup().id)}'
|
|
151
|
+
params: {
|
|
152
|
+
name: 'ca-${resourcePrefix}'
|
|
153
|
+
location: location
|
|
154
|
+
tags: tags
|
|
155
|
+
environmentId: hostingType == 'containerapp' ? containerAppEnv.outputs.id : ''
|
|
156
|
+
containerImage: containerImage
|
|
157
|
+
appInsightsConnectionString: appInsights.outputs.connectionString
|
|
158
|
+
minReplicas: environment == 'prod' ? 1 : 0
|
|
159
|
+
maxReplicas: environment == 'prod' ? 10 : 3
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
// ==============================================================================
|
|
164
|
+
// OUTPUTS
|
|
165
|
+
// ==============================================================================
|
|
166
|
+
|
|
167
|
+
@description('Application URL')
|
|
168
|
+
output appUrl string = hostingType == 'appservice' ? appService.outputs.url : containerApp.outputs.url
|
|
169
|
+
|
|
170
|
+
@description('Hosting Type')
|
|
171
|
+
output hostingType string = hostingType
|
|
172
|
+
|
|
173
|
+
@description('SQL Server connection string')
|
|
174
|
+
output sqlConnectionString string = sqlDatabase.outputs.connectionString
|
|
175
|
+
|
|
176
|
+
@description('Key Vault URI')
|
|
177
|
+
output keyVaultUri string = keyVault.outputs.uri
|
|
178
|
+
|
|
179
|
+
@description('Storage Account connection string')
|
|
180
|
+
output storageConnectionString string = storage.outputs.connectionString
|
|
181
|
+
|
|
182
|
+
@description('Application Insights connection string')
|
|
183
|
+
output appInsightsConnectionString string = appInsights.outputs.connectionString
|
|
184
|
+
|
|
185
|
+
@description('Log Analytics Workspace ID')
|
|
186
|
+
output logAnalyticsWorkspaceId string = logAnalytics.id
|
|
187
|
+
|
|
188
|
+
@description('App Service Principal ID (for Managed Identity)')
|
|
189
|
+
output appPrincipalId string = hostingType == 'appservice' ? appService.outputs.principalId : ''
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
|
|
3
|
+
"contentVersion": "1.0.0.0",
|
|
4
|
+
"parameters": {
|
|
5
|
+
"environment": {
|
|
6
|
+
"value": "dev"
|
|
7
|
+
},
|
|
8
|
+
"appName": {
|
|
9
|
+
"value": "{{APP_NAME}}"
|
|
10
|
+
},
|
|
11
|
+
"sqlAdminPassword": {
|
|
12
|
+
"reference": {
|
|
13
|
+
"keyVault": {
|
|
14
|
+
"id": "/subscriptions/{{SUBSCRIPTION_ID}}/resourceGroups/{{RESOURCE_GROUP}}/providers/Microsoft.KeyVault/vaults/{{KEY_VAULT_NAME}}"
|
|
15
|
+
},
|
|
16
|
+
"secretName": "sql-admin-password"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"hostingType": {
|
|
20
|
+
"value": "appservice"
|
|
21
|
+
},
|
|
22
|
+
"appServiceSku": {
|
|
23
|
+
"value": "F1"
|
|
24
|
+
},
|
|
25
|
+
"containerImage": {
|
|
26
|
+
"value": "{{ACR_NAME}}.azurecr.io/{{APP_NAME}}:latest"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
|
|
3
|
+
"contentVersion": "1.0.0.0",
|
|
4
|
+
"parameters": {
|
|
5
|
+
"environment": {
|
|
6
|
+
"value": "prod"
|
|
7
|
+
},
|
|
8
|
+
"appName": {
|
|
9
|
+
"value": "{{APP_NAME}}"
|
|
10
|
+
},
|
|
11
|
+
"sqlAdminPassword": {
|
|
12
|
+
"reference": {
|
|
13
|
+
"keyVault": {
|
|
14
|
+
"id": "/subscriptions/{{SUBSCRIPTION_ID}}/resourceGroups/{{RESOURCE_GROUP}}/providers/Microsoft.KeyVault/vaults/{{KEY_VAULT_NAME}}"
|
|
15
|
+
},
|
|
16
|
+
"secretName": "sql-admin-password"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"hostingType": {
|
|
20
|
+
"value": "containerapp"
|
|
21
|
+
},
|
|
22
|
+
"appServiceSku": {
|
|
23
|
+
"value": "P1v2"
|
|
24
|
+
},
|
|
25
|
+
"containerImage": {
|
|
26
|
+
"value": "{{ACR_NAME}}.azurecr.io/{{APP_NAME}}:{{VERSION}}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
|
|
3
|
+
"contentVersion": "1.0.0.0",
|
|
4
|
+
"parameters": {
|
|
5
|
+
"environment": {
|
|
6
|
+
"value": "staging"
|
|
7
|
+
},
|
|
8
|
+
"appName": {
|
|
9
|
+
"value": "{{APP_NAME}}"
|
|
10
|
+
},
|
|
11
|
+
"sqlAdminPassword": {
|
|
12
|
+
"reference": {
|
|
13
|
+
"keyVault": {
|
|
14
|
+
"id": "/subscriptions/{{SUBSCRIPTION_ID}}/resourceGroups/{{RESOURCE_GROUP}}/providers/Microsoft.KeyVault/vaults/{{KEY_VAULT_NAME}}"
|
|
15
|
+
},
|
|
16
|
+
"secretName": "sql-admin-password"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"hostingType": {
|
|
20
|
+
"value": "containerapp"
|
|
21
|
+
},
|
|
22
|
+
"appServiceSku": {
|
|
23
|
+
"value": "B1"
|
|
24
|
+
},
|
|
25
|
+
"containerImage": {
|
|
26
|
+
"value": "{{ACR_NAME}}.azurecr.io/{{APP_NAME}}:latest"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
// ==============================================================================
|
|
2
|
+
// MORPH-SPEC - SQL Database
|
|
3
|
+
// Azure SQL Server with Database (supports Free tier)
|
|
4
|
+
// ==============================================================================
|
|
5
|
+
|
|
6
|
+
@description('SQL Server name')
|
|
7
|
+
param serverName string
|
|
8
|
+
|
|
9
|
+
@description('Database name')
|
|
10
|
+
param databaseName string
|
|
11
|
+
|
|
12
|
+
@description('Location')
|
|
13
|
+
param location string
|
|
14
|
+
|
|
15
|
+
@description('Tags')
|
|
16
|
+
param tags object = {}
|
|
17
|
+
|
|
18
|
+
@description('Admin username')
|
|
19
|
+
param adminUsername string = 'sqladmin'
|
|
20
|
+
|
|
21
|
+
@description('Admin password')
|
|
22
|
+
@secure()
|
|
23
|
+
param adminPassword string
|
|
24
|
+
|
|
25
|
+
@description('Use free tier (32GB, limited DTUs)')
|
|
26
|
+
param useFree bool = true
|
|
27
|
+
|
|
28
|
+
// ==============================================================================
|
|
29
|
+
// SQL SERVER
|
|
30
|
+
// ==============================================================================
|
|
31
|
+
|
|
32
|
+
resource sqlServer 'Microsoft.Sql/servers@2023-05-01-preview' = {
|
|
33
|
+
name: serverName
|
|
34
|
+
location: location
|
|
35
|
+
tags: tags
|
|
36
|
+
properties: {
|
|
37
|
+
administratorLogin: adminUsername
|
|
38
|
+
administratorLoginPassword: adminPassword
|
|
39
|
+
version: '12.0'
|
|
40
|
+
minimalTlsVersion: '1.2'
|
|
41
|
+
publicNetworkAccess: 'Enabled'
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// ==============================================================================
|
|
46
|
+
// SQL DATABASE
|
|
47
|
+
// ==============================================================================
|
|
48
|
+
|
|
49
|
+
resource sqlDatabase 'Microsoft.Sql/servers/databases@2023-05-01-preview' = {
|
|
50
|
+
parent: sqlServer
|
|
51
|
+
name: databaseName
|
|
52
|
+
location: location
|
|
53
|
+
tags: tags
|
|
54
|
+
sku: useFree ? {
|
|
55
|
+
name: 'Free'
|
|
56
|
+
tier: 'Free'
|
|
57
|
+
} : {
|
|
58
|
+
name: 'Basic'
|
|
59
|
+
tier: 'Basic'
|
|
60
|
+
capacity: 5
|
|
61
|
+
}
|
|
62
|
+
properties: {
|
|
63
|
+
collation: 'SQL_Latin1_General_CP1_CI_AS'
|
|
64
|
+
maxSizeBytes: useFree ? 32212254720 : 2147483648 // 32GB free, 2GB basic
|
|
65
|
+
catalogCollation: 'SQL_Latin1_General_CP1_CI_AS'
|
|
66
|
+
zoneRedundant: false
|
|
67
|
+
readScale: 'Disabled'
|
|
68
|
+
requestedBackupStorageRedundancy: 'Local'
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// ==============================================================================
|
|
73
|
+
// FIREWALL RULES
|
|
74
|
+
// ==============================================================================
|
|
75
|
+
|
|
76
|
+
// Allow Azure services
|
|
77
|
+
resource firewallAzure 'Microsoft.Sql/servers/firewallRules@2023-05-01-preview' = {
|
|
78
|
+
parent: sqlServer
|
|
79
|
+
name: 'AllowAllAzureIps'
|
|
80
|
+
properties: {
|
|
81
|
+
startIpAddress: '0.0.0.0'
|
|
82
|
+
endIpAddress: '0.0.0.0'
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// ==============================================================================
|
|
87
|
+
// OUTPUTS
|
|
88
|
+
// ==============================================================================
|
|
89
|
+
|
|
90
|
+
@description('SQL Server ID')
|
|
91
|
+
output serverId string = sqlServer.id
|
|
92
|
+
|
|
93
|
+
@description('SQL Server FQDN')
|
|
94
|
+
output serverFqdn string = sqlServer.properties.fullyQualifiedDomainName
|
|
95
|
+
|
|
96
|
+
@description('Database ID')
|
|
97
|
+
output databaseId string = sqlDatabase.id
|
|
98
|
+
|
|
99
|
+
@description('Connection string (password placeholder)')
|
|
100
|
+
output connectionString string = 'Server=tcp:${sqlServer.properties.fullyQualifiedDomainName},1433;Database=${databaseName};User ID=${adminUsername};Password=${adminPassword};Encrypt=true;TrustServerCertificate=false;Connection Timeout=30;'
|
|
101
|
+
|
|
102
|
+
@description('Connection string template (no password)')
|
|
103
|
+
output connectionStringTemplate string = 'Server=tcp:${sqlServer.properties.fullyQualifiedDomainName},1433;Database=${databaseName};User ID=${adminUsername};Password={your_password};Encrypt=true;TrustServerCertificate=false;Connection Timeout=30;'
|