Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update global schema #5653

Merged
merged 3 commits into from
Dec 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 19 additions & 3 deletions pkg/globalconfig/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,15 @@
"type": "integer"
},
"letsencrypt_email": {
"description": "Email associated with Let’s Encrypt feature. (Works in conjunction with use_letsencrypt.) (Not currently compatible with Traefik router.)",
"description": "Email associated with Let's Encrypt feature. (Works in conjunction with use_letsencrypt.) (Not currently compatible with Traefik router.)",
"type": "string"
},
"mailpit_http_port": {
"description": "Port for project's Mailpit HTTP URL.",
"type": "string"
},
"mailpit_https_port": {
"description": "Port for project's Mailpit HTTPS URL.",
"type": "string"
},
"messages": {
Expand Down Expand Up @@ -160,6 +168,14 @@
},
"uniqueItems": true
},
"project_info": {
"description": "List of all projects DDEV currently knows about. DDEV manages this list when using `config` and `delete` commands.",
"type": "array",
"items": {
"type": "array"
},
"uniqueItems": true
},
"performance_mode": {
"description": "Defines the performance optimization mode to be used. Currently Mutagen asynchronous caching and NFS are supported. Mutagen is enabled by default on Mac and Windows.",
"type": "string",
Expand Down Expand Up @@ -187,7 +203,7 @@
]
},
"router_bind_all_interfaces": {
"description": "Whether to bind ddev-routers ports on all network interfaces.",
"description": "Whether to bind ddev-router's ports on all network interfaces.",
"type": "boolean"
},
"router_http_port": {
Expand Down Expand Up @@ -224,7 +240,7 @@
"type": "boolean"
},
"use_letsencrypt": {
"description": "hether to enable Lets Encrypt integration. (Works in conjunction with letsencrypt_email.) (Not currently compatible with Traefik router.)",
"description": "Whether to enable Let's Encrypt integration. (Works in conjunction with letsencrypt_email.) (Not currently compatible with Traefik router.)",
"type": "boolean"
},
"web_environment": {
Expand Down