Vulcan/packages/vulcan-cloudinary/README.md

40 lines
611 B
Markdown
Raw Normal View History

2017-06-13 00:16:52 -07:00
Vulcan file upload package, used internally.
2016-07-11 11:47:00 +09:00
### Custom Posts Fields
- `cloudinaryId`
- `cloudinaryUrls`
### Public Settings
- `cloudinaryCloudName`
- `cloudinaryFormats`
### Private Settings
- `cloudinaryAPIKey`
- `cloudinaryAPISecret`
### Sample Settings
```js
{
"public": {
"cloudinaryCloudName": "myCloudName",
"cloudinaryFormats": [
{
"name": "small",
"width": 120,
"height": 90
},
{
"name": "medium",
"width": 480,
"height": 360
}
]
},
"cloudinaryAPIKey": "abcfoo",
"cloudinaryAPISecret": "123bar",
}
```