Go to file
jhnine 3d276e556d create project 2024-03-21 16:43:44 +08:00
.devops create project 2024-03-21 16:43:44 +08:00
build create project 2024-03-21 16:43:44 +08:00
deploy create project 2024-03-21 16:43:44 +08:00
public create project 2024-03-21 16:43:44 +08:00
src create project 2024-03-21 16:43:44 +08:00
.env.development create project 2024-03-21 16:43:44 +08:00
.env.production create project 2024-03-21 16:43:44 +08:00
.eslintignore create project 2024-03-21 16:43:44 +08:00
.eslintrc.js create project 2024-03-21 16:43:44 +08:00
.gitignore create project 2024-03-21 16:43:44 +08:00
Dockerfile create project 2024-03-21 16:43:44 +08:00
README.md create project 2024-03-21 16:43:44 +08:00
babel.config.js create project 2024-03-21 16:43:44 +08:00
jsconfig.json create project 2024-03-21 16:43:44 +08:00
package.json create project 2024-03-21 16:43:44 +08:00
postcss.config.js create project 2024-03-21 16:43:44 +08:00
vue.config.js create project 2024-03-21 16:43:44 +08:00
yarn.lock create project 2024-03-21 16:43:44 +08:00

README.md

JCCE

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

need node environment

install dependencies

npm install

Commands for Compilation and Hot Reloading

npm run dev

Production Environment Build Commands

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