An open API service indexing awesome lists of open source software.

https://github.com/lagenorhynque/web-api-style-comparison

Web API style comparison: REST, GraphQL, gRPC
https://github.com/lagenorhynque/web-api-style-comparison

api-schema graphql graphql-sdl grpc openapi-spec protocol-buffers rest

Last synced: 3 months ago
JSON representation

Web API style comparison: REST, GraphQL, gRPC

Awesome Lists containing this project

README

          

# web-api-style-comparison
Web API style comparison: REST, GraphQL, gRPC

## 開発環境構築

### ローカルDBのセットアップ

```sh
# DBの起動
docker compose up -d
# SQLファイルのインポート
## Biblog DBのテーブル定義
docker compose exec -T rdb mysql -uroot -proot biblog < mysql/ddl/biblog-tables.sql
docker compose exec -T rdb-test mysql -uroot -proot biblog_test < mysql/ddl/biblog-tables.sql
## Biblog DBのサンプルデータ
docker compose exec -T rdb mysql -uroot -proot biblog < mysql/dml/biblog-data.sql
```