mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
40 lines
No EOL
611 B
Markdown
40 lines
No EOL
611 B
Markdown
Vulcan file upload package, used internally.
|
|
|
|
### 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",
|
|
}
|
|
``` |