ghost-storage-imgur
v1.0.1
Published
Imgur storage adapter for Ghost
Downloads
15
Readme
ghost-storage-imgur
Imgur storage adapter for Ghost.
Installation
cd /path/to/your/ghost/installation
npm install ghost-storage-imgur
mkdir -p content/adapters/storage
cp -r node_modules/ghost-storage-imgur content/adapters/storage/ghost-storage-imgurUsage
Add the following to your configuration file and modify it accordingly.
"storage": {
"active": "ghost-storage-imgur",
"ghost-storage-imgur": {
"username": "<your username here>",
"password": "<your password here>",
"clientId": "<your client id here>"
}
}Here's a comprehensive list of configurations:
| Name | Required? | Description | Environment variable (prefixed with GHOST_IMGUR_) |
|------------|---------------|--------------------------------------------------------------------------------------------------------|---------------------------------------------------------|
| clientId | yes | Client ID associated with your Imgur account (obtained here) | CLIENT_ID |
| password | yes | Your Imgur account password | PASSWORD |
| username | yes | Your Imgur account username | USERNAME |
