Go to file
ann 271a3f9549 fix 2025-06-18 16:47:28 +08:00
.devops add ci/cd 2025-06-11 09:15:23 +08:00
deploy add ci/cd 2025-06-11 09:15:23 +08:00
public fix 2025-06-12 17:37:17 +08:00
src fix 2025-06-18 16:47:28 +08:00
.env.development fix 2025-06-10 16:11:42 +08:00
.env.production fix 2025-06-10 16:11:42 +08:00
.eslintignore first commit 2024-11-01 10:36:47 +08:00
.eslintrc.js first commit 2024-11-01 10:36:47 +08:00
.gitignore first commit 2024-11-01 10:36:47 +08:00
Dockerfile add ci/cd 2025-06-11 09:15:23 +08:00
Jenkinsfile first commit 2024-11-01 10:36:47 +08:00
README.md first commit 2024-11-01 10:36:47 +08:00
babel.config.js first commit 2024-11-01 10:36:47 +08:00
jsconfig.json first commit 2024-11-01 10:36:47 +08:00
package.json first commit 2024-11-01 10:36:47 +08:00
postcss.config.js first commit 2024-11-01 10:36:47 +08:00
vue.config.js fix 2025-06-10 16:11:42 +08:00
yarn.lock first commit 2024-11-01 10:36:47 +08:00

README.md

JCCE

Thanks to KubeSphere and Harvester for providing back-end support for this system.

电脑需要安装 node 环境

安装依赖命令

npm install

编译及热加载命令

npm run dev

生产环境打包命令

npm run build
# build for test environment
npm run build:stage

# build for production environment
npm run build:prod

Advanced

# preview the release environment effect
npm run preview

# preview the release environment effect + static resource analysis
npm run preview -- --report

# code format check
npm run lint

# code format check and auto fix
npm run lint -- --fix