Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
leyanapi01 committed Oct 16, 2023
0 parents commit b08d981
Show file tree
Hide file tree
Showing 9 changed files with 167 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .env.client
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#运行环境
NODE_ENV = 'client'
# 服务端口
VUE_APP_PORT=8000
# 是否开启Mock true|false,development 环境有效
VUE_APP_MOCK = true

VUE_APP_API_SERVER = http:https://111.231.16.35:8085/api/v1
VUE_APP_API_AGENT = http:https://127.0.0.1:55112/api/v1
VUE_APP_API_STATIC =
VUE_HELP_URL = https://deeptest.com

################ 部署环境相关配置 start ################
VUE_APP_DEPLOY_ENV = 'deeptest'
VUE_APP_DEPLOY_ENV_TITLE= 'Deeptest'
# 乐研 loading logo 图片
VUE_APP_DEPLOY_ENV_LOADING_ICON= ''
VUE_APP_DEPLOY_ENV_COMPANY= 'deeptest.com'
VUE_APP_DEPLOY_ENV_COMPANY_COPYRIGHT= 'All Rights Reserved 苏ICP备2022024127号'
################ 部署环境相关配置 end ################
20 changes: 20 additions & 0 deletions .env.demo
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#运行环境
NODE_ENV = 'demo'
# 服务端口
VUE_APP_PORT=8000
# 是否开启Mock true|false,development 环境有效
VUE_APP_MOCK = true

VUE_APP_API_SERVER = http:https://111.231.16.35:8085/api/v1
VUE_APP_API_AGENT = http:https://111.231.16.35:8086/api/v1
VUE_APP_API_STATIC =
VUE_HELP_URL = https://deeptest.com

################ 部署环境相关配置 start ################
VUE_APP_DEPLOY_ENV = 'deeptest'
VUE_APP_DEPLOY_ENV_TITLE= 'Deeptest'
# 乐研 loading logo 图片
VUE_APP_DEPLOY_ENV_LOADING_ICON= ''
VUE_APP_DEPLOY_ENV_COMPANY= 'deeptest.com'
VUE_APP_DEPLOY_ENV_COMPANY_COPYRIGHT= 'All Rights Reserved 苏ICP备2022024127号'
################ 部署环境相关配置 end ################
19 changes: 19 additions & 0 deletions .env.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#运行环境
NODE_ENV = 'development'
# 服务端口
VUE_APP_PORT=8000
# 是否开启Mock true|false,development 环境有效
VUE_APP_MOCK = true

VUE_APP_API_SERVER = http:https://127.0.0.1:8085/api/v1
VUE_APP_API_AGENT = http:https://127.0.0.1:8086/api/v1
VUE_APP_API_STATIC =

################ 部署环境相关配置 start ################
VUE_APP_DEPLOY_ENV = 'deeptest'
VUE_APP_DEPLOY_ENV_TITLE= 'Deeptest'
# 乐研 loading logo 图片
VUE_APP_DEPLOY_ENV_LOADING_ICON= ''
VUE_APP_DEPLOY_ENV_COMPANY= 'deeptest.com'
VUE_APP_DEPLOY_ENV_COMPANY_COPYRIGHT= 'All Rights Reserved 苏ICP备2022024127号'
################ 部署环境相关配置 end ################
1 change: 1 addition & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry "https://registry.npmmirror.com"
Binary file added assets/images/logo-mini.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
103 changes: 103 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"name": "deeptest",
"description": "",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "sh init.project.sh && vue-cli-service --mode=dev serve",

"build:dev": "sh init.project.sh && vue-cli-service build --mode=dev",
"build:test": "sh init.project.sh && vue-cli-service build --mode=test",
"build:prod": "sh init.project.sh && vue-cli-service build --mode=prod",
"build:client": "sh init.project.sh && vue-cli-service build --mode=client --dest ../deeptest-main/client/ui",

"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"svgo": "svgo -f src/assets/iconsvg --config=src/assets/iconsvg/svgo.yml"
},
"dependencies": {
"@ant-design/icons-vue": "^6.0.1",
"@handsontable/vue3": "^12.3.0",
"@toast-ui/editor": "^2.5.3",
"@vuepic/vue-datepicker": "^3.6.5",
"ant-design-vue": "^2.2.8",
"axios": "^0.21.4",
"core-js": "^3.18.0",
"echarts": "^4.9.0",
"handsontable": "^12.3.0",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"md-editor-v3": "^2.4.1",
"mitt": "^3.0.0",
"moment": "^2.29.4",
"monaco-editor": "^0.25.2",
"monaco-editor-webpack-plugin": "^6.0.0",
"neffos.js": "0.1.32",
"node-fetch": "2.6.6",
"nprogress": "^0.2.0",
"sortablejs": "^1.15.0",
"vue": "^3.2.18",
"vue-contenteditable": "^4.1.0",
"vue-i18n": "9.1.9",
"vue-loader-v16": "^16.0.0-beta.5.4",
"vue-router": "4.0.12",
"vue3-json-editor": "^1.1.4",
"vuedraggable": "^4.1.0",
"vuex": "^4.0.2"
},
"devDependencies": {
"@types/echarts": "^4.9.10",
"@types/jest": "^24.9.1",
"@types/lodash.debounce": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-router": "~4.5.13",
"@vue/cli-plugin-typescript": "~4.5.13",
"@vue/cli-plugin-unit-jest": "~4.5.13",
"@vue/cli-plugin-vuex": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/compiler-sfc": "^3.2.18",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.15",
"@vueuse/components": "10.1.2",
"@vueuse/core": "10.1.2",
"body-parser": "^1.19.0",
"chokidar": "^3.5.2",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^7.18.0",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"mockjs": "^1.1.0",
"node-dir": "^0.1.17",
"svg-sprite-loader": "^5.2.1",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.2",
"typescript": "~4.1.6",
"vue-jest": "^5.0.0-alpha.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"keywords": [
"vue",
"vue3",
"vue3.0",
"vue3.x",
"typescript",
"admin",
"template",
"antd",
"antdv",
"Ant Design",
"Ant Design Vue"
],
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}
Binary file added public/favicon.ico
Binary file not shown.
4 changes: 4 additions & 0 deletions utils/feedback.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const renderfeedback = (currentUser: any) => {
console.log('开源版不接入评论反馈系统');
};
export default renderfeedback;

0 comments on commit b08d981

Please sign in to comment.