From f062d8c76e668bd792f523ef2b663dc650faac29 Mon Sep 17 00:00:00 2001 From: guangyin Date: Tue, 16 May 2023 13:47:18 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 12 ++++++++++++ .env.production | 12 ++++++++++++ .env.test | 12 ++++++++++++ .eslintignore | 1 + .gitignore | 25 +++++++++++++++++++++++++ 5 files changed, 62 insertions(+) create mode 100644 .env.development create mode 100644 .env.production create mode 100644 .env.test create mode 100644 .eslintignore create mode 100644 .gitignore diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..30bc160 --- /dev/null +++ b/.env.development @@ -0,0 +1,12 @@ +#开发环境 +NODE_ENV:"development" +# 页面标题 +VUE_APP_TITLE = 汉邦唐全真数字服务平台 +# UE4服务地址 +VUE_APP_PALYER_URL="192.168.1.66:8080" +# 服务地址 +VUE_APP_BASE_API_URL="/dev-api" +# 微前端地址 +VUE_APP_REMOTES_URL="http://119.45.158.12/common/" +# 当前应用部署地址 +VUE_APP_EXPOSES_URL="" diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..0726aa9 --- /dev/null +++ b/.env.production @@ -0,0 +1,12 @@ +#生产环境 +NODE_ENV:"production" +# 页面标题 +VUE_APP_TITLE = 汉邦唐全真数字服务平台 +# UE4服务地址 +VUE_APP_PALYER_URL="192.168.1.66:8080" +# 服务地址 +VUE_APP_BASE_API_URL="" +# 微前端地址 +VUE_APP_REMOTES_URL="http://119.45.158.12/common/" +# 当前应用部署地址 +VUE_APP_EXPOSES_URL="" \ No newline at end of file diff --git a/.env.test b/.env.test new file mode 100644 index 0000000..611eea5 --- /dev/null +++ b/.env.test @@ -0,0 +1,12 @@ +#测试环境 +NODE_ENV:"development" +# 页面标题 +VUE_APP_TITLE = 汉邦唐全真数字服务平台 +# UE4服务地址 +VUE_APP_PALYER_URL="192.168.1.66:8080" +# 服务地址 +VUE_APP_BASE_API_URL="" +# 微前端地址 +VUE_APP_REMOTES_URL="http://192.168.2.99:8080" +# 当前应用部署地址 +VUE_APP_EXPOSES_URL="" \ No newline at end of file diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..c59bd1e --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +ac.min.js \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..432a04b --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +.DS_Store +node_modules +/dist +package-lock.json +/src/assets/common + + +# local env files +# .env.local +# .env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw?