From a78927471de6112790c0b2a4d1e00931fdf445e9 Mon Sep 17 00:00:00 2001 From: mindskip Date: Mon, 26 Oct 2020 09:05:50 +0800 Subject: [PATCH] update README.md --- docs/README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index a5550db..2538d22 100644 --- a/docs/README.md +++ b/docs/README.md @@ -66,4 +66,17 @@ github - mysql :[https://github.com/mindskip/xzs-mysql](https://github.com/min 2. 进群获取到数据库脚本,创建表初始化数据,数据库名称为xzs 3. /uexam/source/xzs为后台代码,建议使用IntelliJ IDEA打开,在application-dev.yml文件中,配置好postgesql/mysql、redis的服务地址,打开XzsApplication文件编译运行,默认端口为8000。 4. 学生系统地址: -5. 管理端地址: \ No newline at end of file +5. 管理端地址: +6. 前端使用webstorm或者vscode,分别打开文件夹打开源代码\source\vue\xzs-student和source\vue\xzs-admin +7. 执行下面2个命令,安装node_module: + + ```npm +npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/ +npm install --registry https://registry.npm.taobao.org + ``` + +8. 执行下面命令,启动前端代码 + + ```npm +npm run serve + ```