Configuration Templates
Real-world JSON configurations across cloud, DevOps, auth, APIs, AI and databases. Open any one in the AI Workspace to explain, customize, validate and download it.
30 templates
Anthropic Messages API Request
A request body for the Anthropic Messages API (POST /v1/messages) with adaptive thinking, a system prompt, tools and a multi-turn conversation.
Auth0 Application (Client) Config
An Auth0 application/client configuration export — callback URLs, grant types, token settings and JWT config — for a regular web app.
AWS IAM Read-only Policy
A least-privilege IAM policy granting read-only access to S3 and CloudWatch logs — a safe starting point for auditors, dashboards and monitoring roles.
AWS Lambda S3 Event Payload
The exact event JSON AWS Lambda receives when an object is created in S3 — invaluable for writing and unit-testing handlers locally.
AWS S3 Bucket Policy — Secure Public Read
An S3 bucket policy that allows public read of static assets while forcing HTTPS and blocking every other action — a common CDN/origin setup.
Azure App Service — Application Settings
The JSON bulk-edit format for App Service application settings and connection strings — the array you paste into the Advanced edit blade to manage a web app’s environment in one shot.
Azure ARM Template — Linux VM Deployment
An ARM deployment template that provisions a Linux virtual machine end to end — virtual network, subnet, public IP, network interface and the VM itself — the common single-VM starting point.
Azure ARM Template — Storage Account
An Azure Resource Manager (ARM) deployment template that provisions a storage account with parameters, variables and outputs — the canonical ARM structure.
Azure Functions host.json
The global host.json for an Azure Functions app — Application Insights sampling, HTTP route prefix and concurrency, function timeout and retry policy — the runtime-wide behavior knobs.
Azure Static Web Apps — staticwebapp.config.json
The staticwebapp.config.json that controls routing, role-based authorization, custom auth, fallback for client-side routers, and response overrides for an Azure Static Web App.
Claude Code settings.json
A .claude/settings.json for Claude Code — permission allow/deny/ask rules, a PostToolUse hook, environment variables and a model override — the file that governs how the agent behaves in a repo.
Continue.dev config.json
A Continue.dev config.json wiring up a chat model, a tab-autocomplete model, an embeddings provider, context providers and a custom slash command — the setup for the open-source AI code assistant.
Dev Container (devcontainer.json)
A devcontainer.json that defines a reproducible Node.js dev environment for GitHub Codespaces and VS Code — base image, dev container features, forwarded ports, pre-installed extensions and a post-create setup step.
Docker daemon.json (Production)
A production-minded Docker daemon.json with log rotation, the overlay2 storage driver, live-restore and sane concurrency limits.
Elasticsearch bool Query
An Elasticsearch Query DSL request combining full-text match, a term filter and a date range, with sorting and pagination — the everyday search shape.
Firebase Project Config (firebase.json)
A firebase.json wiring up Hosting with SPA rewrites and cache headers, plus Firestore and emulator settings — a typical web-app deploy config.
GCP IAM Policy Binding
A Google Cloud IAM policy binding JSON granting a role to members, with an etag for safe concurrent updates — the shape returned by getIamPolicy.
GitHub Actions CI Workflow (JSON view)
A GitHub Actions CI workflow — checkout, setup, install, test — expressed as JSON for programmatic editing before converting back to workflow YAML.
Jenkins Pipeline Definition (JSON)
A JSON description of a Jenkins CI pipeline — parameters, ordered stages and steps — for tools that generate Jenkinsfiles from structured data.
Keycloak Realm Export
A trimmed Keycloak realm export with a client, token lifetimes and password policy — the shape you import to bootstrap a realm.
Kubernetes Deployment (JSON)
A Kubernetes Deployment manifest in JSON with replicas, a rolling-update strategy, resource limits, probes and a security context — production defaults.
MCP Server Config (.mcp.json)
A Model Context Protocol server config — the .mcp.json shared by Claude Code, Cursor and Windsurf — wiring up a local stdio server and a remote HTTP server so AI agents can call external tools.
MongoDB $jsonSchema Validation
A MongoDB collection validator using $jsonSchema to enforce required fields, types and enums on a users collection — schema safety without an ORM.
OpenAI Chat Completions Request
A request body for the OpenAI Chat Completions API with a system message, a multi-turn conversation and a tool (function) definition.
OpenAPI 3.1 Specification (Starter)
A minimal but complete OpenAPI 3.1 document with one CRUD resource, reusable schemas and an API-key security scheme — a clean base for any REST API.
Postman Collection (v2.1)
A Postman Collection v2.1 with a variable-driven base URL, bearer auth and two example requests — ready to import and run.
Terraform Configuration (JSON syntax)
A Terraform config in the native JSON syntax (.tf.json) — provider, variable, resource and output — for tooling that generates Terraform programmatically.
VS Code launch.json (Debug Config)
A .vscode/launch.json with debug configurations — launch a Node program, attach to a running process, and a compound that starts several at once — the file behind the VS Code Run and Debug panel.
VS Code settings.json (Team Baseline)
A shared VS Code settings.json enforcing format-on-save, Prettier, consistent tabs and sensible editor defaults across a team.
VS Code tasks.json (Task Runner)
A .vscode/tasks.json defining build and test tasks — a default build task, a background watch task with a problem matcher, and a compound that chains them — the file behind Run Task in VS Code.