RestBoard是基于vue-cli+vue-router+vue-resource+element+php构建的后台API管理系统
功能API信息管理
API测试记录
API批量测试
API监控
API接口在APP的信息管理
API文档,文档和API信息管理关联
安装下载代码
git clone https://github.com/nusr/RestBoard.git建议fork一份,热情期待您帮忙贡献该项目,为广大客户端开发和测试同学提供帮助。
1.引入nginx配置
nginx配置参考 config/restboard.conf 然后再 nginx.conf 里面通过 include 引入。
include /var/www/RestBoard/config/restboard.conf;配置hosts后重启nginx nginx-sreload。
2.创建数据库和表结构
-- 创建数据库与用户drop database if exists restboard;create database if not exists restboard default character set utf8 collate utf8_general_ci;grant all privileges on restboard.* to 'restboard'@'localhost' identified by 'restboard';flush privileges;quit执行如下命令创建表结构
php artisan migrate如果希望创建表结构时增加示例数据,可以执行如下命令。创建的数据可以删除,所以建议您加上 --seed 参数,方便快速上手。
php artisan migrate --seed
评论