{"catalogRevision":"cat_f13ab9a494120b5e","recipeId":"page:recipes:marketplace:nuxt:product-media","recipeRevision":"r1","canonicalPath":"/recipes/marketplace/nuxt/product-media","label":"Host marketplace with Nuxt: public product media","family":"Workload recipe","summary":"Deploy a marketplace built with Nuxt on Ample using the public media library pattern. Compute runs the app in an isolated microVM behind a public HTTPS URL, a managed PostgreSQL 16 database is auto-provisioned and injected as DATABASE_URL, a private S3-compatible bucket holds objects with credentials delivered as encrypted environment variables, and a published bucket serves public assets from the CDN host. Verified on Nuxt: an object written to a published bucket with an immutable Cache-Control header, a mapping row, and the CDN URL serving it publicly. Not separately tested: your media processing, object layout and cache policy; treat the marketplace-specific behavior as your application code.","representativeQueries":["Host marketplace with Nuxt: public product media","Where can I host Marketplace built with Nuxt?","I need product-to-object mappings and a tested public media delivery path."],"breadcrumbIds":["discovery","workload","workload:commerce-and-catalogs","workload:marketplace","page:recipes:marketplace:nuxt:product-media"],"breadcrumbs":[{"id":"discovery","label":"Agent hosting discovery","canonicalPath":"/discover/discovery","kind":"root"},{"id":"workload","label":"Applications and workloads","canonicalPath":"/discover/workload","kind":"facet"},{"id":"workload:commerce-and-catalogs","label":"Commerce and catalogs","canonicalPath":"/discover/workload/commerce-and-catalogs","kind":"group"},{"id":"workload:marketplace","label":"Marketplace","canonicalPath":"/discover/workload/marketplace","kind":"atom"},{"id":"page:recipes:marketplace:nuxt:product-media","label":"Host marketplace with Nuxt: public product media","canonicalPath":"/recipes/marketplace/nuxt/product-media","kind":"recipe"}],"parentIds":["workload:marketplace","stack:framework-nuxt","pattern:public-media-library","intent:deploy-web-app"],"parents":[{"id":"workload:marketplace","label":"Marketplace","canonicalPath":"/discover/workload/marketplace","kind":"atom"},{"id":"stack:framework-nuxt","label":"Nuxt","canonicalPath":"/discover/stack/framework-nuxt","kind":"atom"},{"id":"pattern:public-media-library","label":"Public media library","canonicalPath":"/discover/pattern/public-media-library","kind":"atom"},{"id":"intent:deploy-web-app","label":"Deploy web app","canonicalPath":"/discover/intent/deploy-web-app","kind":"atom"}],"resourceRequirements":["primitive:compute","primitive:postgres","primitive:s3-compatible-object-storage","primitive:cdn"],"infrastructureRequirements":[{"primitiveId":"primitive:compute","label":"Compute","canonicalPath":"/discover/primitive/compute","status":"verified","summary":"Apps run in isolated x86_64 Firecracker microVMs that auto-pause when idle and wake on request; sizes are the priced VM sizes."},{"primitiveId":"primitive:postgres","label":"Postgres","canonicalPath":"/discover/primitive/postgres","status":"verified","summary":"Managed PostgreSQL 16 runs in its own microVM and is auto-provisioned when an app needs a database and no DATABASE_URL is supplied."},{"primitiveId":"primitive:s3-compatible-object-storage","label":"S3-compatible object storage","canonicalPath":"/discover/primitive/s3-compatible-object-storage","status":"verified","summary":"Buckets are S3-compatible with issued credentials; PutObject and GetObject are verified by canary. Other S3 operations are not verified."},{"primitiveId":"primitive:cdn","label":"CDN","canonicalPath":"/discover/primitive/cdn","status":"verified","summary":"The CDN host serves objects from published buckets. It does not front app compute and is not a cache or key-value store."}],"framework":"Nuxt","workload":"Marketplace","releaseStatus":"published","supportStatus":"verified","executionStatus":"ready","docsOnly":false,"prerequisites":["A Nuxt project that builds and starts with the documented commands (nuxt build then node .output/server/index.mjs (reads HOST and PORT) on the node-22 template)","A PostgreSQL driver reading DATABASE_URL at runtime (auto-provisioned when omitted, or supplied with --env)","A bucket from `ample bucket create` with its credentials passed as encrypted S3_* environment variables and a second, published bucket for public assets (CDN_*)","An Ample account token with servers:write, databases:read, buckets:read"],"testedConfiguration":{"template":"node-22","runtime":"node","size":"s-1vcpu-1gb","install":"npm install","build":"npm run build --if-present","start":"npm run start"},"inputSchema":{"additionalProperties":false,"properties":{"env":{"description":"Encrypted environment variables (bucket credentials, secrets)","items":{"pattern":"^[A-Z][A-Z0-9_]*=.*$","type":"string"},"maxItems":50,"type":"array"},"name":{"description":"App name","maxLength":63,"minLength":1,"pattern":"^[a-z0-9-]+$","type":"string"},"path":{"description":"Project directory or ample.toml service","maxLength":512,"minLength":1,"type":"string"},"release_command":{"description":"Migration command run before activation","maxLength":512,"type":"string"}},"required":["env","name","path"],"type":"object"},"outputSchema":null,"workflowSteps":[{"title":"Build and start","body":"nuxt build then node .output/server/index.mjs (reads HOST and PORT) on the node-22 template. The server must bind 0.0.0.0 on PORT."},{"title":"Implement the pattern on PostgreSQL","body":"The fixture's module implements public media library: an object written to a published bucket with an immutable Cache-Control header, a mapping row, and the CDN URL serving it publicly. Copy the approach into your schema; keep migrations idempotent and run them with --release-command."},{"title":"Wire object storage","body":"Create the bucket(s), then pass endpoint, region, bucket and keys as --env values. Use path-style addressing. Keep private data in an unpublished bucket. Publish only the bucket that serves public assets and reference its CDN URL."},{"title":"Deploy","body":"Run the synchronous deploy once and read the result (exit 0 live, 1 failed, 2 blocked). Re-running with no change is a no-op.","command":"ample deploy . --name <app-name> --public --env S3_ENDPOINT=... --env S3_REGION=... --env S3_BUCKET=... --env S3_ACCESS_KEY_ID=... --env S3_SECRET_ACCESS_KEY=... --env CDN_PUBLIC_URL=..."},{"title":"Verify","body":"Fetch the live URL and the pattern self-test route(s) (/api/p/public-media-library) from the example; then run your own checks. On failure read `ample logs <deployment_id> --kind build` then `--kind runtime`.","command":"ample logs <deployment_id> --kind build"}],"examples":[{"title":"Nuxt pattern fixture","description":"Multi-pattern Nuxt app whose public media library module was checked live; the module is under tests/deploy-canaries/_pattern-modules.","sourceRef":"tests/deploy-canaries/nuxt-patterns"}],"successChecks":[{"description":"app responds on its public URL","kind":"http_get","path":"/","expect":"ample canary nuxt patterns"},{"description":"public-media-library self-test","kind":"http_get","path":"/api/p/public-media-library","expect":"a CDN URL whose content is served publicly"}],"limitations":["Verified on the node-22 template at s-1vcpu-1gb with the example fixture; other sizes, templates and Nuxt major versions are not verified.","The marketplace itself (your media processing, object layout and cache policy) is application code and was not separately tested; the pattern checks are what was verified.","Region, compliance attestations and request-duration limits are unknown and not claimed.","Apps auto-pause when idle and wake on the next request; always-on is an operator setting, not a plan feature.","Managed PostgreSQL 16 only; extensions, connection limits and backup or restore procedures are not verified; apps and their databases are placed together.","PutObject and GetObject with path-style addressing are verified; multipart upload, listing, presigned URLs and lifecycle rules are not.","The CDN serves published-bucket objects only; cache rules, purge and TTL control are not verified (the fixture sets Cache-Control on upload and versions keys)."],"costEstimate":{"currency":"USD","monthlyAmount":10.0,"authoritative":true,"basis":"size prices from pricing.toml (loaded by the API) at build revision 752d2a7584688a5d233b2c53d38307d289b04d3e","components":[{"name":"app server","size":"s-1vcpu-1gb","quantity":1.0,"monthlyAmount":5.0},{"name":"managed PostgreSQL database","size":"s-1vcpu-1gb","quantity":1.0,"monthlyAmount":5.0}],"note":"Always-on monthly price of the tested sizes; apps and databases auto-pause when idle. Buckets are allocation-priced per quota and not included."},"evidenceSummary":[{"kind":"canary_run","summary":"Nuxt pattern fixture deployed on Ample (nuxt build then node .output/server/index.mjs (reads HOST and PORT) on the node-22 template); checks passed for public-media-library and configuration-secrets. Pattern proof: an object written to a published bucket with an immutable Cache-Control header, a mapping row, and the CDN URL serving it publicly.","observedAt":"2026-09-20T03:31:44Z","implementationRevision":"03b6402b1b3e19178985f08ea4033804521d85d4 (CLI b75e104)","expiresAt":"2027-03-19T03:31:44Z","scope":{"checks":["/api/p/public-media-library"],"pattern":"pattern:public-media-library","template":"node-22"}},{"kind":"canary_run","summary":"The same Nuxt app deployed with a --release-command migration; the marker it created was readable after activation.","observedAt":"2026-09-20T01:54:51Z","implementationRevision":"199ff1dfd52683832ae75d3f98b53a7a4bff7f96 (CLI e3181f5)","expiresAt":"2027-03-19T01:54:51Z","scope":{"pattern":"pattern:public-media-library"}}],"lastVerifiedAt":"2026-09-20T03:31:44Z","mcpBinding":{"registryRef":"mcp:ample_deploy","toolName":"ample_deploy","schemaHash":"876465fce906da0c224d62961d3343064108ebe30af80cf1b87094974e948853","observedAt":"2026-09-22T00:31:22.774679+00:00","implementationRevision":"e6446ceea69b","requiredScopes":["servers:write","databases:read","buckets:read"],"bindingState":"current"},"unknowns":["region availability is unknown until a verified region fact is recorded","compliance attestations are unknown; none are claimed"],"formats":{"html":"https://ample.computer/recipes/marketplace/nuxt/product-media","markdown":"https://ample.computer/recipes/marketplace/nuxt/product-media.md","json":"https://api.ample.computer/v1/catalog/recipes/page%3Arecipes%3Amarketplace%3Anuxt%3Aproduct-media"},"nextActions":[{"actionId":"browse-catalog","label":"Browse the catalog index","operationId":"catalog_index","method":"GET","relativePath":"/v1/catalog","origin":"api","parameters":{},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"search-recipes","label":"Search published recipes by intent, stack and constraints","operationId":"search_recipes","method":"POST","relativePath":"/v1/catalog/search","origin":"api","parameters":{"body":{"limit":5,"query":"Host marketplace with Nuxt: public product media"}},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"plan:page:recipes:marketplace:nuxt:product-media","label":"Prepare a side-effect-free deployment plan for an authorized project","operationId":"plan_deployment","method":"POST","relativePath":"/v1/catalog/plan","origin":"api","parameters":{"body":{"inputs":{},"projectId":"<workspace or server id you own>","recipeId":"page:recipes:marketplace:nuxt:product-media","recipeRevision":"r1"}},"requiresAuthentication":true,"requiresApproval":false},{"actionId":"auth-setup","label":"Read the existing agent authentication setup","operationId":"existing_auth_setup","method":"GET","relativePath":"/mcp/setup","origin":"api","parameters":{},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:workload:marketplace","label":"Browse Marketplace","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/workload%3Amarketplace","origin":"api","parameters":{"nodeId":"workload:marketplace"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:stack:framework-nuxt","label":"Browse Nuxt","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/stack%3Aframework-nuxt","origin":"api","parameters":{"nodeId":"stack:framework-nuxt"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:pattern:public-media-library","label":"Browse Public media library","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/pattern%3Apublic-media-library","origin":"api","parameters":{"nodeId":"pattern:public-media-library"},"requiresAuthentication":false,"requiresApproval":false},{"actionId":"browse:intent:deploy-web-app","label":"Browse Deploy web app","operationId":"browse_node","method":"GET","relativePath":"/v1/catalog/nodes/intent%3Adeploy-web-app","origin":"api","parameters":{"nodeId":"intent:deploy-web-app"},"requiresAuthentication":false,"requiresApproval":false}]}