ks3
Version:
本代码库为`金山云存储KS3`服务.主要提供`KS3 nodejs SDK`和`命令行工具`.
15 lines (13 loc) • 448 B
JavaScript
require('dotenv').config();
var ak = process.env.AK || ''; // input your ak
var sk = process.env.SK || ''; // input your sk
var bucketName = process.env.bucketName || 'test-bucket' || '<BUCKE_TNAME>'; // input your bucketname
var endpoint = process.env.endpoint || 'ks3-beijing.ksyuncs.com'; // replace your region
var krn = process.env.KRN || '' // replace your rolekrn
module.exports = {
ak,
sk,
bucketName,
endpoint,
krn
}