学院观
您可以直观地查看所有大学和学生数据的一站式目的地
文档
即将推出
在线试用
前端部署在。 玩得开心 :smiling_face_with_sunglasses:
在本地运行
运行后端
1.种子mongodb
要使用随机数据运行种子集合:
cd backend/seed
node seedCollege.js
node seedStudent.js
node seedStudentNum.js
注意:请保持相同的执行顺序
2.设置.env文件
创建.env并添加上一步中的MONGODB_URI值
3. 运行服务器
最后,等待的步骤npm run start
运行前端
前端是静态 html 文件。 它们可以使用任何 Web 服务器提供服务。 为了方便使用,我们将使用 。
# Install serve globally
sudo npm i -g serve
# Serve the frontend
cd frontend && s
1