strapi-plugin-text-plus-dropbox
v0.1.0
Published
This is the description of the plugin.
Downloads
1
Readme
Strapi plugin Text Plus Dropbox
Plugin that add choose from dropbox button.
Required:
How to install:
In a root folder of your strapi project run
npm install strapi-plugin-text-plus strapi-plugin-text-plus-dropbox --save
Create a dropbox app here. Take a note on your
app key
, it will be used later. More about dropbox chooser.Generate a config file at
config/plugins.js
module.exports = ({ env }) => ({
'text-plus-dropbox': {
'dropboxAppKey': env('DROPBOX_APP_KEY'),
}
});
Then make sure you have below variables in your .env file
DROPBOX_APP_KEY=XXXXXXX
Rebuild admin UI
strapi build
Run strapi
strapi develop
How to use:
To activate dropbox add shortcode [textplus:dropbox]
to description of text field
Version Notes:
- this plugin was tested with stable version of Strapi - 3.5.1.