Use Alibaba Cloud (Aliyun) OSS
You can store packages to Alibaba Cloud (Aliyun) Object Storage Service.
Configure BaGetter
You can modify BaGetter's configurations by editing the appsettings.json
file. For the full list of configurations, please refer to BaGetter's configuration guide.
Alibaba Cloud Object Storage Service (OSS)
Update the appsettings.json
file:
{
...
"Storage": {
"Type": "AliyunOss",
"Endpoint": "oss-us-west-1.aliyuncs.com",
"Bucket": "foo",
"AccessKey": "",
"AccessKeySecret": "",
"Prefix": "lib/bagetter" // optional
},
...
}