# class **Repository Path**: whxwhxwhxwhxwhx/class ## Basic Information - **Project Name**: class - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-29 - **Last Updated**: 2024-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 呜哩呜哩视频小站 [TOC] > 启动后端: > swagger地址:http://localhost:8092/swagger-ui.html > doc地址:http://localhots:8092/doc.html > 若使用h2数据库,h2控制台地址:http://localhost:8092/h2 > > 启动前端: > 第一次运行前要安装依赖:npm install > 进入前端目录:cd vacms-admin > 启动开发环境:npm run dev > 访问地址:http://localhost:8093/#login # 一、后端开发 ## 1、后端技术栈 springboot、h2、mysql、spring-data-jpa、shiro、jwt、lombok、swagger、fastjson ## 2、模块分类 ### 1)主数据管理 信息管理模块:用户信息管理 ### 2)视频管理 视频审批: 审批记录: # 二、前端开发 ## 1、前端技术栈 node.js、vue.js、vue-router、element-ui ## 2、步骤 ### 1)初始化vue项目 ```bash D:\code\projects\vacms>vue init webpack wuliwuli-admin ? Project name vacms-admin ? Project description vacms-admin ? Author yangbin ? Vue build standalone ? Install vue-router? Yes ? Use ESLint to lint your code? Yes ? Pick an ESLint preset Standard ? Set up unit tests Yes ? Pick a test runner jest ? Setup e2e tests with Nightwatch? Yes ? Should we run `npm install` for you after the project has been created? (recommended) npm vue-cli · Generated "wuliwuli-admin". # Installing project dependencies ... # ======================== ``` ### 2)安装axios npm install --save axios ### 3)安装element npm i element-ui -S ### 4)引入vuex npm install vuex --save