Commit 48fad7d2 authored by Breaker-93's avatar Breaker-93

chore: 添加uat环境配置并区分sit环境

parent 4239ab42
NODE_ENV = "production"
BASE_URL = "https://crm.breaker93.com/"
VUE_APP_PUBLIC_PATH = "https://crm.oss.com/breaker-blog"
VUE_APP_API = "https://crm.breaker93.com/api"
VUE_APP_OSS_SRC = ''
ACCESS_KEY_ID = "xxxxxxxxxxxxx"
ACCESS_KEY_SECRET = "xxxxxxxxxxxxx"
REGION = "oss-cn-hangzhou"
BUCKET = "breaker-crm"
PREFIX = "breaker-blog"
IS_ANALYZE = true
outputDir = 'crm'
\ No newline at end of file
# SIT 系统内部集成测试(System Integration Testing) ,作为内部测试的环境
NODE_ENV = 'production'
BASE_URL = 'https://prod.breaker93.com/'
VUE_APP_PUBLIC_PATH = './'
VUE_APP_API = 'http://106.2.11.235:38091/api/v1/'
VUE_APP_OSS_SRC = 'http://106.2.11.235:3323/server/realFile/'
ACCESS_KEY_ID = 'xxxxxxxxxxxxx'
ACCESS_KEY_SECRET = 'xxxxxxxxxxxxx'
REGION = 'oss-cn-hangzhou'
BUCKET = 'staven-prod'
PREFIX = 'staven-blog'
outputDir = 'sit'
\ No newline at end of file
# UAT 用户验收测试(User Acceptance Testing),作为客户体验的环境
NODE_ENV = 'production'
BASE_URL = 'https://prod.breaker93.com/'
VUE_APP_PUBLIC_PATH = './'
VUE_APP_API = 'http://106.2.11.235:38092/api/v1/'
VUE_APP_OSS_SRC = 'http://106.2.11.235:3324/server/realFile/'
ACCESS_KEY_ID = 'xxxxxxxxxxxxx'
ACCESS_KEY_SECRET = 'xxxxxxxxxxxxx'
REGION = 'oss-cn-hangzhou'
BUCKET = 'staven-prod'
PREFIX = 'staven-blog'
outputDir = 'prod'
......@@ -5,7 +5,8 @@
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"crm": "vue-cli-service build --mode crm",
"sit": "vue-cli-service build --mode sit",
"uat": "vue-cli-service build --mode uat",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment