egg-minio
v1.0.5
Published
minio egg plugin
Downloads
8
Readme
egg-minio
Install
$ npm i egg-minio --save
Usage
// {app_root}/config/plugin.js
exports.minio = {
enable: true,
package: 'egg-minio',
};
Configuration
// {app_root}/config/config.default.js
exports.minio = {
client: {
endPoint: '0.0.0.1',
port: '3000',
useSSL: false,
accessKey: 'accessKey',
secretKey: 'secretKey'
}
};
see config/config.default.js for more detail.
Example
Questions & Suggestions
Please open an issue here.