committed by
GitHub
1 changed files with 83 additions and 0 deletions
@ -0,0 +1,83 @@ |
|||||
|
# FastAPI CLI |
||||
|
|
||||
|
**FastAPI CLI**๋ FastAPI ์ ํ๋ฆฌ์ผ์ด์
์ ์คํํ๊ณ , ํ๋ก์ ํธ๋ฅผ ๊ด๋ฆฌํ๋ ๋ฑ ๋ค์ํ ์์
์ ์ํํ ์ ์๋ ์ปค๋งจ๋ ๋ผ์ธ ํ๋ก๊ทธ๋จ์
๋๋ค. |
||||
|
|
||||
|
FastAPI๋ฅผ ์ค์นํ ๋ (์: `pip install "fastapi[standard]"` ๋ช
๋ น์ด๋ฅผ ์ฌ์ฉํ ๊ฒฝ์ฐ), `fastapi-cli`๋ผ๋ ํจํค์ง๊ฐ ํฌํจ๋ฉ๋๋ค. ์ด ํจํค์ง๋ ํฐ๋ฏธ๋์์ ์ฌ์ฉํ ์ ์๋ `fastapi` ๋ช
๋ น์ด๋ฅผ ์ ๊ณตํฉ๋๋ค. |
||||
|
|
||||
|
๊ฐ๋ฐ์ฉ์ผ๋ก FastAPI ์ ํ๋ฆฌ์ผ์ด์
์ ์คํํ๋ ค๋ฉด ๋ค์๊ณผ ๊ฐ์ด `fastapi dev` ๋ช
๋ น์ด๋ฅผ ์ฌ์ฉํ ์ ์์ต๋๋ค: |
||||
|
|
||||
|
<div class="termy"> |
||||
|
|
||||
|
```console |
||||
|
$ <font color="#4E9A06">fastapi</font> dev <u style="text-decoration-style:single">main.py</u> |
||||
|
<font color="#3465A4">INFO </font> Using path <font color="#3465A4">main.py</font> |
||||
|
<font color="#3465A4">INFO </font> Resolved absolute path <font color="#75507B">/home/user/code/awesomeapp/</font><font color="#AD7FA8">main.py</font> |
||||
|
<font color="#3465A4">INFO </font> Searching for package file structure from directories with <font color="#3465A4">__init__.py</font> files |
||||
|
<font color="#3465A4">INFO </font> Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font> |
||||
|
|
||||
|
โญโ <font color="#8AE234"><b>Python module file</b></font> โโฎ |
||||
|
โ โ |
||||
|
โ ๐ main.py โ |
||||
|
โ โ |
||||
|
โฐโโโโโโโโโโโโโโโโโโโโโโโฏ |
||||
|
|
||||
|
<font color="#3465A4">INFO </font> Importing module <font color="#4E9A06">main</font> |
||||
|
<font color="#3465A4">INFO </font> Found importable FastAPI app |
||||
|
|
||||
|
โญโ <font color="#8AE234"><b>Importable FastAPI app</b></font> โโฎ |
||||
|
โ โ |
||||
|
โ <span style="background-color:#272822"><font color="#FF4689">from</font></span><span style="background-color:#272822"><font color="#F8F8F2"> main </font></span><span style="background-color:#272822"><font color="#FF4689">import</font></span><span style="background-color:#272822"><font color="#F8F8F2"> app</font></span><span style="background-color:#272822"> </span> โ |
||||
|
โ โ |
||||
|
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ |
||||
|
|
||||
|
<font color="#3465A4">INFO </font> Using import string <font color="#8AE234"><b>main:app</b></font> |
||||
|
|
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โญโโโโโโโโโโ FastAPI CLI - Development mode โโโโโโโโโโโโฎ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ Serving at: http://127.0.0.1:8000 โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ API docs: http://127.0.0.1:8000/docs โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ Running in development mode, for production use: โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ </font></span><span style="background-color:#C4A000"><font color="#555753"><b>fastapi run</b></font></span><span style="background-color:#C4A000"><font color="#2E3436"> โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โ โ</font></span> |
||||
|
<span style="background-color:#C4A000"><font color="#2E3436">โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ</font></span> |
||||
|
|
||||
|
<font color="#4E9A06">INFO</font>: Will watch for changes in these directories: ['/home/user/code/awesomeapp'] |
||||
|
<font color="#4E9A06">INFO</font>: Uvicorn running on <b>http://127.0.0.1:8000</b> (Press CTRL+C to quit) |
||||
|
<font color="#4E9A06">INFO</font>: Started reloader process [<font color="#34E2E2"><b>2265862</b></font>] using <font color="#34E2E2"><b>WatchFiles</b></font> |
||||
|
<font color="#4E9A06">INFO</font>: Started server process [<font color="#06989A">2265873</font>] |
||||
|
<font color="#4E9A06">INFO</font>: Waiting for application startup. |
||||
|
<font color="#4E9A06">INFO</font>: Application startup complete. |
||||
|
``` |
||||
|
|
||||
|
</div> |
||||
|
|
||||
|
`fastapi`๋ผ๊ณ ๋ถ๋ฆฌ๋ ๋ช
๋ น์ด ํ๋ก๊ทธ๋จ์ **FastAPI CLI**์
๋๋ค. |
||||
|
|
||||
|
FastAPI CLI๋ Python ํ๋ก๊ทธ๋จ์ ๊ฒฝ๋ก(์: `main.py`)๋ฅผ ์ธ์๋ก ๋ฐ์, `FastAPI` ์ธ์คํด์ค(์ผ๋ฐ์ ์ผ๋ก `app`์ผ๋ก ๋ช
๋ช
)๋ฅผ ์๋์ผ๋ก ๊ฐ์งํ๊ณ ์ฌ๋ฐ๋ฅธ ์ํฌํธ ๊ณผ์ ์ ๊ฒฐ์ ํ ํ ์ด๋ฅผ ์คํํฉ๋๋ค. |
||||
|
|
||||
|
ํ๋ก๋์
ํ๊ฒฝ์์๋ `fastapi run` ๋ช
๋ น์ด๋ฅผ ์ฌ์ฉํฉ๋๋ค. ๐ |
||||
|
|
||||
|
๋ด๋ถ์ ์ผ๋ก, **FastAPI CLI**๋ ๊ณ ์ฑ๋ฅ์, ํ๋ก๋์
์ ์ ํฉํ, ASGI ์๋ฒ์ธ <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a>์ ์ฌ์ฉํฉ๋๋ค. ๐ |
||||
|
|
||||
|
## `fastapi dev` |
||||
|
|
||||
|
`fastapi dev` ๋ช
๋ น์ ์คํํ๋ฉด ๊ฐ๋ฐ ๋ชจ๋๊ฐ ์์๋ฉ๋๋ค. |
||||
|
|
||||
|
๊ธฐ๋ณธ์ ์ผ๋ก **์๋ ์ฌ์์(auto-reload)** ๊ธฐ๋ฅ์ด ํ์ฑํ๋์ด, ์ฝ๋์ ๋ณ๊ฒฝ์ด ์๊ธฐ๋ฉด ์๋ฒ๋ฅผ ์๋์ผ๋ก ๋ค์ ์์ํฉ๋๋ค. ํ์ง๋ง ์ด ๊ธฐ๋ฅ์ ๋ฆฌ์์ค๋ฅผ ๋ง์ด ์ฌ์ฉํ๋ฉฐ, ๋นํ์ฑํํ์ ๋๋ณด๋ค ์์ ์ฑ์ด ๋จ์ด์ง ์ ์์ต๋๋ค. ๋ฐ๋ผ์ ๊ฐ๋ฐ ํ๊ฒฝ์์๋ง ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์ต๋๋ค. ๋ํ, ์๋ฒ๋ ์ปดํจํฐ๊ฐ ์์ฒด์ ์ผ๋ก ํต์ ํ ์ ์๋ IP ์ฃผ์(`localhost`)์ธ `127.0.0.1`์์ ์ฐ๊ฒฐ์ ๋๊ธฐํฉ๋๋ค. |
||||
|
|
||||
|
## `fastapi run` |
||||
|
|
||||
|
`fastapi run` ๋ช
๋ น์ ์คํํ๋ฉด ๊ธฐ๋ณธ์ ์ผ๋ก ํ๋ก๋์
๋ชจ๋๋ก FastAPI๊ฐ ์์๋ฉ๋๋ค. |
||||
|
|
||||
|
๊ธฐ๋ณธ์ ์ผ๋ก **์๋ ์ฌ์์(auto-reload)** ๊ธฐ๋ฅ์ด ๋นํ์ฑํ๋์ด ์์ต๋๋ค. ๋ํ, ์ฌ์ฉ ๊ฐ๋ฅํ ๋ชจ๋ IP ์ฃผ์์ธ `0.0.0.0`์์ ์ฐ๊ฒฐ์ ๋๊ธฐํ๋ฏ๋ก ํด๋น ์ปดํจํฐ์ ํต์ ํ ์ ์๋ ๋ชจ๋ ์ฌ๋์ด ๊ณต๊ฐ์ ์ผ๋ก ์ก์ธ์คํ ์ ์์ต๋๋ค. ์ด๋ ์ผ๋ฐ์ ์ผ๋ก ์ปจํ
์ด๋์ ๊ฐ์ ํ๋ก๋์
ํ๊ฒฝ์์ ์คํํ๋ ๋ฐฉ๋ฒ์
๋๋ค. |
||||
|
|
||||
|
์ ํ๋ฆฌ์ผ์ด์
์ ๋ฐฐํฌํ๋ ๋ฐฉ์์ ๋ฐ๋ผ ๋ค๋ฅด์ง๋ง, ๋๋ถ๋ถ "์ข
๋ฃ ํ๋ก์(termination proxy)"๋ฅผ ํ์ฉํด HTTPS๋ฅผ ์ฒ๋ฆฌํ๋ ๊ฒ์ด ์ข์ต๋๋ค. ๋ฐฐํฌ ์๋น์ค ์ ๊ณต์๊ฐ ์ด ์์
์ ๋์ ์ฒ๋ฆฌํด์ค ์๋ ์๊ณ , ์ง์ ์ค์ ํด์ผ ํ ์๋ ์์ต๋๋ค. |
||||
|
|
||||
|
/// tip |
||||
|
|
||||
|
์์ธํ ๋ด์ฉ์ [deployment documentation](deployment/index.md){.internal-link target=\_blank}์์ ํ์ธํ ์ ์์ต๋๋ค. |
||||
|
|
||||
|
/// |
Loadingโฆ
Reference in new issue