中医古籍标引
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 月之前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ### 安装使用步骤 📔
  2. - **Clone:**
  3. ```text
  4. git clone https://gitea.51trust.net/front/acupuncture-moxibustion-admin
  5. ```
  6. - **Install:**
  7. ```text
  8. pnpm install
  9. ```
  10. - **Run:**
  11. ```text
  12. pnpm dev
  13. pnpm serve
  14. ```
  15. - **Build:**
  16. ```text
  17. # 开发环境
  18. pnpm build:dev
  19. # 测试环境
  20. pnpm build:test
  21. # 生产环境
  22. pnpm build:pro
  23. ```
  24. - **Lint:**
  25. ```text
  26. # eslint 检测代码
  27. pnpm lint:eslint
  28. # prettier 格式化代码
  29. pnpm lint:prettier
  30. # stylelint 格式化样式
  31. pnpm lint:stylelint
  32. ```
  33. - **commit:**
  34. ```text
  35. # 提交代码(提交前会自动执行 lint:lint-staged 命令)
  36. pnpm commit
  37. ```