Skip to content

Commit

Permalink
Merge pull request SchemaStore#3946 from melefabrizio/master
Browse files Browse the repository at this point in the history
Updated monade stack config schema
  • Loading branch information
hyperupcall authored Jul 26, 2024
2 parents 21004ed + 74f05ec commit 9341f2f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/schemas/json/monade-stack-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
"type": "string",
"description": "The name of the stack. It will be used as a prefix for the stack's resources"
},
"nginx": {
"type": "string",
"enum": ["system", "local"],
"default": "system",
"description": "Specifies whether to use the system-wide nginx service or spawn a local nginx process among other services. If not specified, 'system' is implied. Local nginx requires an nginx binary in the path. System wide nginx configuration is left to the user."
},
"services": {
"type": "object",
"description": "The services to be run in the stack. Each service is represented by its name, which is the key",
Expand Down
1 change: 1 addition & 0 deletions src/test/monade-stack-config/example.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: myapp
nginx: local
services:
api:
command: 'yarn dev'
Expand Down

0 comments on commit 9341f2f

Please sign in to comment.