后台 API 管理系统 RestBoard
- 授权协议: MIT
- 开发语言: PHP JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/nusr/RestBoard
- 软件文档: https://github.com/nusr/RestBoard/blob/master/readme.md
- 官方下载: https://github.com/nusr/RestBoard
软件介绍
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 -s reload。
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
Web 2.0 Architectures
Duane Nickull、Dion Hinchcliffe、James Governor / O'Reilly / 2009 / USD 34.99
The "Web 2.0" phenomena has become more pervasive than ever before. It is impacting the very fabric of our society and presents opportunities for those with knowledge. The individuals who understand t......一起来看看 《Web 2.0 Architectures》 这本书的介绍吧!
