strapi-provider-upload-uos
v0.0.7
Published
Gooddoctor tfs(UOS) provider for strapi upload
Downloads
2
Maintainers
Readme
strapi-provider-upload-uos
A provider for strapi server to upload file to Gooddoctor UOS
Requirements
- Node.js >= 10
- npm > 6
Installation
$ npm install strapi-provider-upload-uos --save
or
$ yarn add strapi-provider-upload-uos --save
For more details, please see: https://strapi.io/documentation/developer-docs/latest/development/plugins/upload.html#using-a-provider
Usage
Strapi version > 3.0.0
With a stable release of Strapi 3.0.0, the configuration was moved to a JavaScript file. Official documentation here.
To enable the provider, create or edit the file at ./config/plugins.js
.
module.exports = ({ env }) => ({
upload: {
provider: "uos",
providerOptions: {
baseUrl: env("TFS_UPLOAD_URL")
},
},
});