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









评论