Skip to content

Commit

Permalink
update chapter4 title : remove space
Browse files Browse the repository at this point in the history
  • Loading branch information
noknmgc committed Aug 23, 2023
1 parent 07b179f commit 0771351
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions FastAPI/chapters/chapter3.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- [作成するエンドポイント](#作成するエンドポイント)
- [スキーマの定義](#スキーマの定義)
- [パスオペレーション関数の定義](#パスオペレーション関数の定義)
- [Next: Chapter4 DB との連携](#next-chapter4-dbとの連携)
- [Next: Chapter4 DBとの連携](#next-chapter4-dbとの連携)
- [Prev: Chapter2 ディレクトリ構成](#prev-chapter2-ディレクトリ構成)

## パラメータの取得(スキップ可)
Expand Down Expand Up @@ -366,6 +366,6 @@ def read_user(skip: int = 0, limit: int = 100):

[SwaggerUI](http://127.0.0.1:8000/docs)で、いろいろ試して動作を確認してみましょう。

## [Next: Chapter4 DB との連携](../chapters/chapter4.md)
## [Next: Chapter4 DBとの連携](../chapters/chapter4.md)

## [Prev: Chapter2 ディレクトリ構成](../chapters/chapter2.md)
4 changes: 2 additions & 2 deletions FastAPI/chapters/chapter4.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Chapter4 DB との連携
# Chapter4 DBとの連携

ここでは、ユーザーデータを実際に DB に置いていきます。SQLAlchemy という ORM ライブラリを使います。DB には PostgreSQL を使用します。

## 目次

- [Chapter4 DB との連携](#chapter4-db-との連携)
- [Chapter4 DBとの連携](#chapter4-dbとの連携)
- [目次](#目次)
- [ライブラリのインストール](#ライブラリのインストール)
- [設定ファイルの追加](#設定ファイルの追加)
Expand Down

0 comments on commit 0771351

Please sign in to comment.