#1964·codimd

edu-hub

作者: kunjusk697创建于 2026年9月3日更新于 2026年9月3日

{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://render.com/schema/render.yaml.json", "title": "render.yaml JSON Schema", "description": "A JSON schema for render.yaml files. See https://render.com/docs/blueprint-spec for more information", "type": "object", "definitions": { "autoDeployTrigger": { "type": "string", "enum": ["off", "commit", "checksPass"], "description": "Sets the automatic deploy behavior for a Git-based service." }, "buildFilter": { "type": "object", "description": "File paths in the service's repo to include or ignore when determining whether to trigger an automatic build. Especially useful for monorepos.", "properties": { "paths": { "type": "array", "description": "File paths to include when determining whether to trigger a build. Uses glob syntax.", "items": { "type": "string" } }, "ignoredPaths": { "type": "array", "description": "File paths to ignore when determining whether to trigger a build, even if they match a path in 'paths'. Uses glob syntax.", "items": { "type": "string" } } } }, "diskSizeGB": { "type": "integer", "minimum": 1, "description": "The disk size in GB. Must be either 1 or a multiple of 5." }, "storageAutoscalingEnabled": { "type": "boolean", "description": "Storage Autoscaling configuration for the database." }, "connectionPool": { "type": "string", "enum": ["pgbouncer", "none"], "description": "The type of connection pool to operate in front of the database, if any." }, "databaseEnvVarProperty": { "type": "string", "enum": [ "connectionString", "connectionPoolString", "host", "port", "user", "password", "database" ], "description": "The property of the database to reference." }, "serviceEnvVarProperty": { "type": "string", "enum": ["host", "port", "hostport", "connectionString"], "description": "The property of the service to reference." }, "cronService": { "type": "object", "description": "A cron job service that runs on a schedule.", "properties": { "type": { "type": "string", "const": "cron", "description": "The type of service. Must be 'cron' for cron jobs." }, "name": { "type": "string", "description": "The service's name. Must be unique within the Blueprint." }, "region": { "$ref": "#/definitions/region" }, "plan": { "$ref": "#/definitions/cronPlan" }, "runtime": { "$ref": "#/definitions/runtime" }, "schedule": { "type": "string", "description": "The schedule for running the cron job, as a cron expression." }, …

内容来源: hackmdio/codimd