A bootstrap catalog for self-hosted Massdriver instances containing resource types, infrastructure bundles, and cloud credentials. This catalog helps you quickly model your platform architecture and developer experience before implementing infrastructure code.
This is your platform foundation. While this guide walks you through the concepts, you're not just following a tutorialβyou're building your actual platform. This repository will serve as your platform team's source of truth for resource types and bundles. Design your infrastructure architecture, iterate on the developer experience, and refine your abstractions hereβthen fill in your OpenTofu/Terraform implementation when you're ready.
Note
Massdriver v2: This catalog targets Massdriver v2 (Mass CLI β₯ 2.0.0, GraphQL /v2/). v2 renamed several core concepts:
targetsβ environmentspackagesβ instancesartifact definitionsβ resource typesartifactsβ resources
The keys connections: and artifacts: inside massdriver.yaml are unchanged β backward-compatible renames to dependencies: and resources: are coming in a future release. Until then this repo continues to use connections: and artifacts: in every massdriver.yaml, with a comment pointing to the new names.
tl;dr: Jump to Quick Start
This catalog is yours to customize and extend. Here's the recommended workflow:
- Clone this repository to your organization (keep it privateβit will contain your infrastructure code)
- Configure GitHub Secrets (see Quick Start) to enable automatic publishing on push to
main - Start experimenting with bundles in your editorβedit schemas, add parameters, define connections
- Watch the developer experience get built in real-time in Massdriver as you iterate on your abstractions
The beauty of this approach: you can refine the entire developer experienceβwhat parameters developers see, how bundles connect, what resources are producedβall before writing a single line of infrastructure code.
If you're new to Massdriver, here are the core concepts you'll encounter:
-
Bundle: A reusable, versioned definition of infrastructure or application components. Bundles encapsulate your IaC code (Terraform/OpenTofu/Helm), configuration schemas, dependencies, and policies into a single deployable unit. Think of them as "infrastructure packages" with built-in guardrails.
-
Resource Type (formerly artifact definition): A JSON Schema contract that defines how infrastructure components can connect to each other. Resource types ensure type safetyβyou can't connect incompatible components.
-
Resource (formerly artifact): A live, materialized resource type emitted by a deployed bundle. For example, when you deploy a PostgreSQL bundle, it emits a PostgreSQL resource containing connection details that other bundles can consume.
-
Parameters (params): User-configurable inputs for a bundle, like instance sizes, database names, or feature flags. These define what developers can customize when deploying infrastructure.
-
Connections (the
connections:key inmassdriver.yaml, surfaced in the product as dependencies): Inputs a bundle needs from other bundles. When a bundle declares it needs a connection to anetworkresource, you must link it to a bundle that produces a network resource. -
Project: A logical grouping of related infrastructure, like "ecommerce-platform" or "data-pipeline". Projects contain one or more environments.
-
Environment (formerly target): A deployment context within a project, like "development", "staging", or "production". Each environment has its own canvas where you design and deploy infrastructure.
-
Canvas: The visual diagram in the Massdriver UI where you add bundles, connect them together, and configure parameters. It's your infrastructure design board.
-
Instance (formerly package): A configured deployment of a bundle in a specific environment. When you add a bundle to your canvas and configure it, you're creating an instance. Think of it like the relationship between a class and an object in programmingβbundles are the reusable definitions, instances are the deployed objects.
Resource types (formerly called artifact definitions) are schema-based contracts that define how infrastructure components can interact with each other in Massdriver. Think of them as type definitions for your infrastructureβthey ensure that when you connect a database to an application, both sides speak the same language.
Each resource type is a directory containing a massdriver.yaml file:
resource-types/
βββ network/
β βββ massdriver.yaml # Network/VPC contract
βββ postgres/
β βββ massdriver.yaml # PostgreSQL connection contract
βββ mysql/
β βββ massdriver.yaml # MySQL connection contract
βββ bucket/
β βββ massdriver.yaml # Object storage contract
βββ application/
βββ massdriver.yaml # Application metadata contract
π‘ Note on Sensitive Fields: Resource types support the
$md.sensitiveannotation to mark fields containing credentials, passwords, or other secrets. Fields marked as sensitive are automatically masked as[SENSITIVE]in GraphQL queries and UI displays while remaining accessible for actual infrastructure connections. All resource data is encrypted at rest and in transit, and downloads of sensitive data are tracked in audit logs.
Why they matter: Resource types enable type-safe infrastructure composition. You can't accidentally connect a PostgreSQL resource to a bundle expecting MySQLβthe system validates compatibility at design time, before any infrastructure is deployed.
Use these example resource types to:
- Define the contract between your IaC modules (what data gets passed from one to another)
- Model how services connect together in your architecture
- Design your project and environment structure
- Plan the developer experience before writing infrastructure code
- Then customize them to match your organization's specific needs
Bundles are reusable, versioned definitions of cloud infrastructure or application components. A bundle encapsulates everything needed to provision and manage a piece of infrastructure: the IaC code, configuration schemas, dependencies, outputs, and policies.
Bundles provide a safe self-service framework where you (the platform team) encode best practices into ready-to-use modules, and developers get a simple interface to deploy what they need.
This catalog includes template bundles with complete schemas and placeholder infrastructure code:
network/- Network/VPC provisioningpostgres/- PostgreSQL database provisioningmysql/- MySQL database provisioningbucket/- Object storage bucket provisioningapplication/- Application deployment template
Each bundle includes:
- β
Complete
massdriver.yamlconfiguration - β Parameter schemas - Define your IaC variables (tfvars, Helm values) and customize the UI form for user configuration (instance sizes, database names, etc.)
- β
Connection schemas (the
connections:key β the product surfaces these as dependencies) - Define resources from other bundles this one needs, enabling secure access to their details during automation. - β
Artifact schemas (the
artifacts:key β the product surfaces these as resources) - Define what infrastructure this bundle produces for others to consume. - β UI schemas - Control how the configuration form looks and behaves
- π§ Placeholder OpenTofu/Terraform code (replace with yours)
Note
The connections: and artifacts: keys keep their v1 names inside massdriver.yaml. Backward-compatible renames to dependencies: and resources: are coming β until then, prefer the v1 keys here.
These bundles let you model first, implement later. Use the schemas to plan your architecture and test the developer experience in the Massdriver UI, then fill in the actual infrastructure code when you're ready.
For more details, see the Bundle YAML Spec and Module Patterns guides.
Bundle templates are starter scaffolds for creating new bundles. Use them with the Massdriver CLI to quickly bootstrap new infrastructure modules with the correct structure and boilerplate.
Available templates:
| Template | Provisioner | Description |
|---|---|---|
opentofu |
OpenTofu | OpenTofu module template |
terraform |
Terraform | Terraform module template |
bicep |
Bicep | Azure Bicep template |
helm-chart |
Helm | Deploy external Helm charts |
Usage with the CLI:
# Set custom template path (optional - for local development)
export MD_TEMPLATES_PATH=/path/to/massdriver-catalog/templates
# Create a new bundle from a template
mass bundle new --name my-bundle --template-name opentofuEach template includes:
massdriver.yaml- Pre-configured with example params, connections, and artifactsoperator.md- Runbook template for operational guidanceicon.svg- Placeholder iconsrc/orchart/- IaC boilerplate for the specific provisioner
For more details, see the Bundle Templates guide.
Platform integrations are resource types that model the credentials Massdriver uses to connect to your cloud providers and infrastructure platforms. They live in their own directory (rather than under resource-types/) for discoverability β operationally they're published with mass resource-type publish, just like everything in resource-types/. Each platform directory contains everything needed to authenticate and interact with that platform.
Tip
Customize these to match how you authenticate. The platform schemas shipped here are a starting point, not a prescription. If your team authenticates AWS with static access keys instead of an assumed IAM role, replace aws/massdriver.yaml's schema with the fields your aws provider block actually consumes. If you front Azure with a managed identity, GCP with workload identity federation, or Kubernetes with an OIDC token, model that here. The fields in schema: should mirror the inputs to your IaC tool's provider configuration (Terraform/OpenTofu provider blocks, Helm kubeconfig, etc.) β Massdriver collects those values and hands them to your bundles at deploy time. Update instructions/ with your team's onboarding steps so developers know what to paste where.
Massdriver can orchestrate any platform your IaC tooling supports. Adding a new platform (Snowflake, Datadog, Confluent Cloud, etc.) is as simple as defining its credential schema.
Structure:
platforms/aws/
βββ massdriver.yaml # Platform definition (source of truth)
βββ icon.png # Platform icon
βββ instructions/ # Setup walkthroughs
β βββ AWS CLI.md
β βββ AWS Console.md
β βββ AWS One Click.md
βββ exports/ # Downloadable templates (optional)
The massdriver.yaml Format:
Each platform has a declarative massdriver.yaml that drives the build process:
name: aws-iam-role # Resource type name
label: AWS IAM Role # Display name in UI
icon: https://... # Icon URL
ui:
connectionOrientation: environmentDefault
environmentDefaultGroup: credentials
instructions: # References to markdown files
- label: AWS CLI
path: ./instructions/AWS CLI.md
exports: # Optional: downloadable templates
- downloadButtonText: Kube Config
fileFormat: yaml
templatePath: ./exports/kubeconfig.yaml.liquid
templateLang: liquid
schema: # JSON Schema as YAML
title: AWS IAM Role
type: object
properties:
# ... credential fields matching your OpenTofu provider authThe schema section should match your OpenTofu/Terraform provider authentication configuration. For example, AWS IAM Role credentials match the aws provider's assume_role block, Azure Service Principal matches the azurerm provider config, etc.
Export Templates (optional): The exports/ directory enables self-service artifact downloads. Export templates allow developers to download pre-configured files based on deployed artifact dataβlike generating a kubeconfig file from a Kubernetes namespace, VPN configuration files with certificates, database connection strings, or environment variable files for local development.
Templates use Liquid syntax and have access to the full artifact payload via the artifact variable. When a developer clicks the download button in Massdriver's UI, the template is rendered with their specific artifact data and downloaded as a ready-to-use configuration file.
Export configuration is defined in the massdriver.yaml:
downloadButtonText: The label shown on the download buttonfileFormat: The file extension for the downloaded filetemplatePath: Path to the template file (relative to the platform directory)templateLang: Template language (currently onlyliquidis supported)
Example template (exports/kubeconfig.yaml.liquid):
apiVersion: v1
clusters:
- cluster:
server: {{ artifact.data.authentication.cluster.server }}
certificate-authority-data: {{ artifact.data.authentication.cluster.certificate-authority-data }}
name: {{ artifact.id }}
users:
- name: {{ artifact.id }}
user:
token: {{ artifact.data.authentication.user.token }}This template references fields from the deployed artifact's data payload, allowing developers to instantly download correctly configured files without manual copy-paste.
Note: The
massdriver.yamlformat used here is a prototype for a more declarative authoring experience that may be adopted in future versions of Massdriver.
Included platforms:
aws/- AWS IAM Role authenticationazure/- Azure Service Principal authenticationgcp/- GCP Service Account authenticationkubernetes/- Kubernetes cluster connection
Extending Massdriver: Your platform team can support any cloud or SaaS platform by creating a new platform directory and defining its massdriver.yaml. Design the schema section to match your OpenTofu provider or Helm authentication configuration. Massdriver captures those credential values and securely passes them to your automation workflows.
Update your supported cloud platforms and onboarding instructions with:
make publish-platformsThis compiles the massdriver.yaml definitions into dist.json artifacts for publishing.
- Self-hosted Massdriver instance running server v2.0.0 or higher
- Massdriver CLI (
mass) v2.0.0 or higher, installed and authenticated - OpenTofu or Terraform installed (for implementing bundles)
Important
This catalog targets Massdriver v2 (CLI v2 + GraphQL /v2/). Check your CLI with mass version; the same command also reports the connected server version. If you're still on v1, upgrade both server and CLI before publishing β v2 changed how OCI repositories are managed and v1 publish flows will not work.
Tip
Claude Code Users: Install the Massdriver Claude Code Plugin for AI-assisted bundle development with built-in guardrails, patterns, and validation rules:
/plugin marketplace add massdriver-cloud/claude-plugins
/plugin install massdriver@massdriver-cloud-claude-plugins-
Clone this repository
git clone <your-private-repo-url> cd massdriver-catalog
-
Update GitHub URLs
Replace
YOUR_ORGwith your actual GitHub organization name throughout the repository. This updatessource_urlfields in bundles and links in operator runbooks to point to your repository. -
Configure GitHub Secrets and Variables
This repository includes GitHub Actions workflows that automatically publish resource types and bundles to your Massdriver instance on push to
main. To enable this, configure the following in your GitHub repository:Required Secrets (Settings β Secrets and variables β Actions β Secrets):
MASSDRIVER_API_KEY- Your Massdriver service-account API key. See Service account permissions below for the privileges this account needs.
Required Variables (Settings β Secrets and variables β Actions β Variables):
MASSDRIVER_ORG_ID- Your Massdriver organization ID. You can find this in your Massdriver instance URL or in the organization settings.
Optional Variables (for self-hosted instances):
MASSDRIVER_URL- The API URL of your self-hosted Massdriver instance (e.g.,https://api.massdriver.yourdomain.com). If not set, defaults tohttps://api.massdriver.cloud.
Once configured, any push to the
mainbranch will automatically:- Publish all resource types in
resource-types/(and any enabled platforms inplatforms/) - Ensure each bundle's OCI repository exists, then build and publish all bundles in
bundles/
[!TIP] To publish snapshot/dev versions on every PR push, enable
publish-bundles-dev.yml.exampleby renaming it. It runsmass bundle publish --developmentagainst any bundles changed in the PR.
In Massdriver v2, every bundle is published into its own OCI repository, and the repository must exist before mass bundle publish will succeed. The CI workflow handles this automatically β it calls mass bundle create <name> for each bundle on every run and ignores the "already exists" error. Locally, make create-bundle-repos does the same thing.
If a bundle needs custom attributes (for example, -a owner=data,service=database), the workflow can't infer them. Create those repositories once by hand:
mass bundle create my-bundle -a owner=data,service=databaseAfter that, normal pushes will keep publishing into the same repo.
The service account behind MASSDRIVER_API_KEY needs to be able to:
- Create OCI repositories β required for the idempotent
mass bundle createstep. - Publish to OCI repositories β required for
mass bundle publish. - Publish resource types β required for
mass resource-type publish(used for bothresource-types/andplatforms/).
In your Massdriver instance, grant the service account the role(s) that include these permissions before pointing CI at it. If the workflow fails on first run with an authorization error, this is almost always the cause.
mass bundle build resolves every $ref: in connections: / artifacts: against your Massdriver server, so resource types must already be published before any bundle that references them will build. The default GitHub Actions workflows are split by file path β pushing only bundles/** will not trigger the resource-types workflow. On a fresh catalog, run make publish-resource-types (or push a change under resource-types/) once before publishing bundles, or run make all locally to do both in order.
-
Set up pre-commit hooks (optional but recommended)
pip install pre-commit pre-commit install
This will automatically format JSON/YAML, validate Terraform, and check for common issues before each commit.
-
Explore and customize
- Review resource types in
resource-types/ - Explore bundle schemas in
bundles/*/massdriver.yaml
- Review resource types in
-
Model your platform
First publish the template bundles to your organization. After you get a feel for organization your resources in Massdriver, you'll update these modules with your IaC.
make all- Open the Massdriver UI
- Create projects - Logical groupings of infrastructure that can reproduce environments. Examples include application domains ("ecommerce", "api", "billing") or platform infrastructure ("network", "compute platform", "data platform")
- Create environments within projects - Named environments ("dev", "staging", "production"), preview environments ("PR 123"), or regional deployments ("Production US East 1", "US West 2")
- Add bundles to your canvas (the visual diagram where you design your architecture) β each placement creates an instance of that bundle
- Connect instances togetherβlinking resources produced by one bundle to dependencies of another, passing configuration between provisioning pipelines (no copypasta! no brittle scripts!)
- Configure parameters to test what the developer experience feels like
-
Implement infrastructure code
- When ready, replace placeholder code in
bundles/*/src/with your OpenTofu/Terraform - Test locally with
tofu initandtofu planor run rapid infrastructure testing withmass bundle publish --development - Customize platform definitions to match your provider blocks, then publish them:
make publish-platforms
- Update schemas if your implementation needs different parameters
- When ready, replace placeholder code in
-
Publish to Massdriver
Automatic Publishing (Recommended): If you've configured GitHub Secrets and Variables (step 3), resource types and bundles are automatically published on push to
main. Simply push your changes:git push origin main
Manual Publishing: Alternatively, you can publish manually using the included Makefile:
make all
This command will:
- Clean up any previous build artifacts
- Publish resource types to your Massdriver instance
- Ensure an OCI repository exists for each bundle (
make create-bundle-repos) - Build all bundles (generates schema JSON files from
massdriver.yaml) - Validate all bundles with OpenTofu, Helm, etc.
- Publish all bundles to your Massdriver instance using your default
massCLI profile
Publishing makes your resource types and bundles available in your Massdriver instance. Once published, you'll see them in the Massdriver UI and can add them to your environment canvases.
This catalog is designed for a three-phase approach: model your architecture, implement the infrastructure code, then continuously improve.
- Use the provided resource types and bundle schemas as-is (no infrastructure code needed yet)
- Create projects and environments in the Massdriver UI
- Add bundles to your canvas (creating instances)
- Connect them by linking resources produced by one bundle to the dependencies of another
- Configure parameters to test what the developer experience feels like
- Iterate on resource types and bundle scopes until they feel right
Goal: Understand what services you want to offer, how they connect, and what the developer experience should be. You're designing the self-service platform interface before writing any infrastructure code.
Key insight: This phase is about discovering the right abstractions. Does it make sense to have separate postgres and mysql bundles? Should your network bundle produce separate "public subnet" and "private subnet" resources, or one combined "network" resource? The schemas let you explore these questions quickly without committing to implementation details.
Don't aim for perfectionβaim for feedback. Get a working version in front of your developers and iterate based on their input. The abstractions that make sense on paper often need refinement once developers actually use them. You can always add more bundles, refine parameters, or adjust resource types later. Real developer feedback is more valuable than theoretical perfection.
Tip
Check out the Getting Started Guide for detailed documentation on bundle and resource type development.
- Replace placeholder OpenTofu/Terraform in
bundles/*/src/ - Test your infrastructure code locally with
tofu plan - Update parameter schemas if your implementation needs different inputs
- Push to
mainto automatically publish bundles via GitHub Actions, or usemake allfor manual publishing - Deploy instances to test environments and validate everything works
Goal: Fill in the infrastructure code that matches your architectural model.
Key benefit: Because you already validated the architecture and developer experience in Phase 1, you're implementing against a proven design. You know what parameters developers need, what connections make sense, and what resources to produce.
- Add more bundles as needed
- Create custom resource types for your organization
- Refine parameter validation and UI schemas
- Use release channels and strategies to automate version distribution and upgrades across environments
- π Say farewell to ticket ops
.
βββ README.md # This file
βββ Makefile # Automation for publishing
βββ resource-types/ # Resource type contracts (formerly artifact definitions)
β βββ application/
β β βββ massdriver.yaml
β βββ bucket/
β β βββ massdriver.yaml
β βββ mysql/
β β βββ massdriver.yaml
β βββ network/
β β βββ massdriver.yaml
β βββ postgres/
β βββ massdriver.yaml
βββ bundles/ # Infrastructure-as-Code modules
β βββ application/ # Example Application
β βββ bucket/ # Object storage
β βββ mysql/ # MySQL database
β βββ network/ # VPC/Network
β βββ postgres/ # PostgreSQL database
βββ examples/ # Example applications for bundle demos
β βββ apps/
β βββ todoapi/ # Lambda + DynamoDB TODO API
βββ templates/ # Bundle templates for mass bundle new
β βββ opentofu/ # OpenTofu module template
β βββ terraform/ # Terraform module template
β βββ bicep/ # Azure Bicep template
β βββ helm-chart/ # External Helm chart template
βββ platforms/ # Cloud-credential resource types (split out for discoverability)
βββ aws/ # IAM Role
βββ azure/ # Service Principal
βββ gcp/ # Service Account
βββ kubernetes/ # Namespace + kubeconfig
βββ .../ # + add any cloud your IaC supports
Resource types in resource-types/ define the contracts between bundlesβwhat data gets passed from one to another. (Massdriver's docs may still link these as "artifact definitions"; that's the v1 name.) See the docs for the complete schema reference.
Customize resource types to:
- Pass connection info between bundles - A database bundle outputs hostname, port, credentials. An application bundle receives those as inputs and can connect immediately.
- Validate data before it's used - Ensure CIDR blocks are valid IP ranges, database names match naming rules, or ports are in valid ranges. Catch config errors before provisioning.
- Mark sensitive fields - Use
$md.sensitive: trueon passwords, API keys, certificates. They get masked in UIs and logs but are available to bundles that need them.
Tip
When you standardize what your bundles produceβdefining consistent resource type schemasβyou can automate compliance and security policies across all resources of that type. This eliminates the brittle copy-paste scripts and custom glue code typically needed to wire infrastructure together, replacing them with validated, reusable contracts.
Each bundle's massdriver.yaml defines the complete contract for that infrastructure component. See the Bundle YAML Spec for the complete schema reference.
-
params: Input parameters that users configure when deploying (instance sizes, database names, feature flags, etc.). These become variables in your IaC code. They provide extra UI controls and validations not available in most IaC tools.
-
connections (the v1 key, surfaced in the v2 product as dependencies): Input resources that this bundle depends on. For example, a database bundle might require a connection to a network resource. Connections securely pass data (credentials, IAM policies, endpoints) from one bundle to another during provisioning. These become variables in your IaC code, and Massdriver validates that only compatible resources can be connected.
-
artifacts (the v1 key, surfaced in the v2 product as resources): Output resources that this bundle produces for other bundles to consume. For example, a database bundle produces a database resource containing connection details. You populate these in your IaC code's outputs.
-
ui: UI schema that controls how the configuration form is renderedβfield ordering, help text, conditional visibility, custom widgets, etc. This follows the React JSON Schema Form specification.
Note
The keys connections: and artifacts: keep their v1 names inside massdriver.yaml. Backward-compatible renames to dependencies: and resources: are coming in a future release; for now, every bundle and template in this repo uses the v1 keys.
Warning
Params and connections share the same namespace in your IaC code. If you have a param named "database" and a connection named "database", they will conflict as the same variable (e.g., variable "database" in Terraform). Use distinct names to avoid collisions.
Customize these schemas to match your desired developer experience. The schemas define the self-service interface your developers will use, so invest time in making them clear, well-documented, and user-friendly.
When you're ready to implement the actual infrastructure provisioning, replace the placeholder OpenTofu/Terraform code in bundles/*/src/.
How it works: Massdriver bundles combine policy as code, IaC, and pipelines into a single deployable unit. They define the interface (inputs/outputs), dependencies (connections), and workflow stepsβbringing compliance and security scanning into the bundle itself, instead of maintaining snowflake pipelines scattered across hundreds of repos. Massdriver automatically generates input variables from your params and connections schemas, then executes your IaC code with those values.
To implement a bundle:
- Keep the
_massdriver_variables.tffile - it's auto-generated bymass bundle buildfrom your schemas. (Optional: You can stop defining variables directly in OpenTofu/Terraform/Bicep and just define them inmassdriver.yaml. The build process will generate them.) - Replace
main.tfwith your infrastructure code - Add additional
.tffiles as needed (variables.tf, outputs.tf, etc.) - Use Massdriver-provided variables:
var.md_metadata- Massdriver metadata (name prefix, instance ID, environment, default tags, etc.)
- Output resource data that matches your
artifacts:schema (connection details, resource IDs, etc.)
Example: If your params schema defines a database_name parameter, access it in Terraform as var.database_name. If your connections: schema requires a network resource named net, access its VPC ID as var.net.data.infrastructure.vpc_id.
Once you've modeled your architecture and started implementing bundles, dive deeper into Massdriver with our comprehensive getting started guide:
-
π Getting Started Guide - Step-by-step tutorials covering:
- Publishing and deploying bundles
- Connecting bundles with artifacts
- Creating bundles from existing OpenTofu/Terraform modules
- Using bundle deployment metadata for tagging and naming
-
π» Getting Started Repository - Example bundles with detailed walkthroughs that teach you:
- How to work with the Mass CLI
- Bundle development best practices
- Real-world patterns and techniques
These resources complement this catalog by showing you how to work with bundles once you have them implemented.
- π GitHub Actions - This repository includes pre-configured workflows (using
actions/setup@v6, the v2-compatible release) that automatically publish resource types and bundles on push tomain. See the Quick Start section for setup instructions.
- Start with modeling: Use the schemas to plan before implementing
- Single-purpose bundles: Keep bundles focused (e.g.,
postgres, notrds) - Iterate on abstractions: Refine resource types based on usage
- Test the developer experience: Configure bundles in the UI before implementing
- Version your bundles: Use semantic versioning for stable releases
- Rush to implementation: Model your architecture first
- Create generic bundles: Be specific about use cases
- Skip documentation: Update descriptions and help text
- Ignore validation: Use JSON Schema to prevent errors
- Forget about UI: Good UX makes adoption easier
The examples/apps/ directory contains sample applications used by bundles in this catalog.
A minimal Node.js REST API for the aws-lambda-todo-api bundle. Uses AWS Lambda + API Gateway + DynamoDB.
Building the deployment package:
cd examples/apps/todoapi
npm install
npm run packageThis produces todoapi.zip containing index.mjs, node_modules/, and package.json. Copy it into the bundle's src/ directory before publishing:
cp todoapi.zip ../../bundles/aws-lambda-todo-api/src/todoapi.zipThe zip is gitignored β rebuild it locally before publishing the bundle. See examples/apps/todoapi/README.md for API routes and configuration details.
- π Massdriver Documentation - Official documentation
- π Getting Started Guide - Getting started with bundle development
- π» Getting Started Repository - Accompanying code
- π― Core Resource Types - Standard resource types in the Massdriver SaaS Platform (the upstream repo is still named
artifact-definitions). Great to use as inspiration or a foundation. - π¬ Massdriver Slack - Community support
Questions or issues?
- Review existing bundle schemas for patterns in this catalog
- Check out the Getting Started Guide for detailed tutorials
- Join our Slack community for help
- Reach out to Massdriver support
Private repository - customize for your organization's needs.
Remember: This catalog is your platform foundation. Clone it, customize it, make it yours. The goal is to help you think through architecture and developer experience before writing infrastructure code. Start modeling today, implement tomorrow.