Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeSpec のコンパイルと docker コンテナの立ち上げを行うスクリプトを追加 #148

Merged
merged 2 commits into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ seichi-portal-api-schema は GitHub Pages によって redocly が提供する

### ローカルで確認する

`docker compose` を利用することで、ローカル環境で、スキーマを視覚的に確認することができます
`compile-and-up-compose.sh` を起動することでスキーマを視覚的に確認することができます

docker を使用する前に seichi-portal-api-schema のルートディレクトリで `tsp compile ./src` を実行し、`openapi.yaml`を生成する必要があります。

`docker compose up -d` で、コンテナを起動したら、`http://localhost:8081` または `http://localhost:8082` にアクセスすると開くことができます。
シェルスクリプトを使用してコンテナを起動したら、`http://localhost:8081` または `http://localhost:8082` にアクセスすると開くことができます。

それぞれの違いは以下の通りです。

Expand Down
6 changes: 6 additions & 0 deletions compile-and-up-compose.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

npm ci
tsp compile ./src
docker compse down
docker compose up -d