# 课程管理系统
**Repository Path**: huang-jun-sen/course-management-system
## Basic Information
- **Project Name**: 课程管理系统
- **Description**: 测试案例
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2021-12-12
- **Last Updated**: 2022-01-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Laravue
[Laravue](https://laravue.dev) (pronounced /ˈlarəvjuː/) is a beautiful dashboard combination of [Laravel](https://laravel.com/), [Vue.js](https://github.com/vuejs/vue) and the UI Toolkit [Element](https://github.com/ElemeFE/element). The work is inspired by [vue-element-admin](http://panjiachen.github.io/vue-element-admin) with our love on top of that. With the powerful Laravel framework as the backend, Vue.js as the high performance on the frontend, Laravue appears to be a full-stack solution for an enterprise application level.
Documentation: [https://doc.laravue.dev](https://doc.laravue.dev)
## Screenshot
## Getting started
### Prerequisites
* Laravue is positioned as an enterprise management solution, and it is highly recommended to use it to start from scratch.
* For existing Laravel project, you should check [Laravue Core](https://github.com/tuandm/laravue-core) for integration.
* Your machine needs to be ready for the latest [Laravel](https://laravel.com/docs/6.x#installation) and [Node.js](https://nodejs.org).
### Installing
#### Manual
```bash
# 启动准备
- 去client 和 server 目录下拷贝 .env.example 改为 .env
- 去server 目录 的.env配置数据库等链接信息
# 安装服务端依赖
cd server
composer install
# 通过迁移文件创建数据表
php artisan migrate --seed
# 服务端启动
php artisan serve
# 安装前端依赖
cd clinet
npm install
#前端启动
npm run watch # or npm run watch
```