-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathbk-repo.js.example
More file actions
33 lines (32 loc) · 1.48 KB
/
bk-repo.js.example
File metadata and controls
33 lines (32 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available.
* Copyright (C) 2025 Tencent. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
// 若使用到自定义组件和图片类型变量等用到文件存储服务,请先自行搭建bkRepo服务并填写正确信息,若不需要用到,则忽略此文件
module.exports = process.env.NODE_ENV === 'production'
// 线上环境配置(npm run build时使用)
? {
BKREPO_USERNAME: '',
BKREPO_BUCKET: '',
BKREPO_PRIVATE_BUCKET: '',
BKREPO_PUBLIC_BUCKET: '',
BKREPO_ENDPOINT_URL: '',
BKREPO_PROJECT: '',
BKREPO_PASSWORD: ''
}
// 本地调试配置(npm run dev时使用)
: {
BKREPO_USERNAME: '',
BKREPO_BUCKET: '',
BKREPO_PRIVATE_BUCKET: '',
BKREPO_PUBLIC_BUCKET: '',
BKREPO_ENDPOINT_URL: '',
BKREPO_PROJECT: '',
BKREPO_PASSWORD: ''
}