type is redundant, removed

This commit is contained in:
Kasra Bigdeli 2018-12-25 22:36:27 -08:00
parent 33d7e683bf
commit ed1a2fcb00
2 changed files with 3 additions and 7 deletions

View File

@ -7,5 +7,5 @@ Process:
- Variables are prefixed with `$$cap`
- There is one special variable called `$$cap_appname$$` which exists for all oneclick apps
- Varibles can be anywhere in the JSON and they will be replaced by what user enters
- Each variable must have `id`, `type`, `label`. It may also have `defaultValue`, `validRegex`, `description`.
- Each variable must have `id`, `label`. It may also have `defaultValue`, `validRegex`, `description`.
- Other than `image`, `environment`, `ports`, `volumes`, `depends_on`, other parameters are ignored. Make sure they are not important.

View File

@ -51,29 +51,25 @@
"id": "$$cap_db_user",
"label": "Database user",
"defaultValue": "wordpressuser",
"type": "text",
"testRegex": "/^[a-z0-9\\-]+$/"
},
{
"id": "$$cap_db_pass",
"label": "Database password",
"description": "",
"type": "text",
"validRegex": ".{22,}"
},
{
"id": "$$cap_wp_version",
"label": "WordPress Version",
"defaultValue": "latest",
"description": "Checkout their docker page for the valid tags",
"type": "text"
"description": "Checkout their docker page for the valid tags"
},
{
"id": "$$cap_mysql_version",
"label": "MySQL Version",
"defaultValue": "latest",
"description": "Checkout their docker page for the valid tags",
"type": "text"
"description": "Checkout their docker page for the valid tags"
}]
}