File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ 前后端分离后台管理系统,使用Vue Element admin + Laravel 5.5构建。带swagger自动文档生成。
2+ 接口基于dingo/api和tymon/jwt,权限认证带后端Token认证和前端vue.js的动态权限
3+
4+ ---
5+ ## 开发步骤
6+ ### 配置
7+ ``` bash
8+ # 安装
9+ composer install
10+
11+ # 复制配置文件
12+ cp .env.example .env
13+
14+ # 生成加密key
15+ php artisan key:generate
16+
17+ # 生成jwt加密key
18+ php artisan jwt:secret
19+
20+ # 配置env中的数据库链接
21+ 配置数据库名称、用户名和密码
22+
23+ # 数据库迁移和填充
24+ php artisan migrate
25+ php artisan db:seed
26+
27+ # 启动 (或者用普通方式启动laravel项目)
28+ php artisan serve
29+
30+ yarn (或 npm install)
31+ yarn run dev (或 npm run dev)
32+ ```
33+ ## 后端
34+ ### 技术栈
35+ - Laravel 5.5
36+ - L5-Swagger
37+ - ...
38+ ## 前端
39+ ### 技术栈
40+ - Vue全家桶
41+ - [ Vue-element-admin] ( https://panjiachen.github.io/vue-element-admin-site/zh/ )
42+ - Axios
43+ - Laravel Mix
44+ - ...
You can’t perform that action at this time.
0 commit comments