使用renren-fast快速开发平台搭建后台管理系统
使用git下载项目
# 后台项目
git clone https://gitee.com/renrenio/renren-fast.git
#前端项目
git clone https://gitee.com/renrenio/renren-fast-vue.git
- 下载好之后将后台项目导入到idea中,并将其中的db目录下的
sql
文件在mysql
(在mysql中创建gulimall-admin
的数据库)中执行。 - 在
yml
配置文件中修改数据库的连接信息。
将前端项目通过vs code
打开。
坑点
- 1、如果电脑中配置了
python3
的环境变量,在启动前端项目会报错,需要将python3
换为python2.7
版本
可通过命令npm install --global --production windows-build-tools
快速设置python2.7
- 2、如果启动过程中
node sass
模块报错,说明当前安装的node cass
不兼容当前环境的node版本,需要删除重装一下
npm uninstall --save node-sass
cnpm install --save node-sass
- 错误排除完后,通过命令
npm run dev
启动前端项目!!