系统v2.0前端代码仓库
本项目以jeecgboot为模板,请先阅读此文档后继续!
建议:安装 nvm 或其他 nodejs 版本管理器,使用 VSCode 作为 IDE,使用 Chrome/Edge 浏览器;
在项目目录下执行 pnpm install
在项目目录下执行 git config commit.template .github/COMMIT_TEMPLATE
开发的基本流程,部分内容可忽略
git pull
# 可以rebase
git checkout [branch]
# 可选
nvm use 20
# 建议,高版本node自带pnpm包管理器
pnpm dev
# 必选,dddd
git add .
git commit
# 公用模板见.github/COMMIT_TEMPLATE
git push origin [branch]
# 目前master分支无保护,可直接推
pnpm build