Skip to content

Instantly share code, notes, and snippets.

@mohsenk
Created September 28, 2018 17:35
Show Gist options
  • Save mohsenk/619804dd3812caee9c248b3eb10ac1a9 to your computer and use it in GitHub Desktop.
Save mohsenk/619804dd3812caee9c248b3eb10ac1a9 to your computer and use it in GitHub Desktop.
## Configuration file
```json
{
"name" : "Default Template",
"description" : "A simple template contains heading and gallery and staff and contact",
"components" : [
{
"name" : "toolbar",
"description" : "",
"defaultStatus" : "enabled",
"props" : [
{
"name" : "website_title" ,
"title" : "Website Title" ,
"description" : "Browser title of website ( head's title) " ,
"default" : "Bookatreat Website",
"type" : "string",
"rules" : []
},
{
"name" : "website_logo" ,
"title" : "Toolbar Logo" ,
"description" : "Image that shown in toolbar" ,
"default" : "http://google.com/logo.png",
"type" : {
"name" : "file",
}
},
{
"name" : "staff_list",
"title" : "List of staff",
"description" : "array of staff list",
"default" : [{
"name" : "Mohsen Kairmi",
"image" : "https://google.com/imag1.png",
"job_title" : "Makeup Artist"
}],
"type" : {
"name" : "string",
"image" : "url",
"job_title" : "string"
}
"rules" : ["name" : "is_string","image.is_url","job_title.is_between_100_200"]
}
]
}
]
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment