KintoneAppBuilder created
This commit is contained in:
27
backend/readme.md
Normal file
27
backend/readme.md
Normal file
@@ -0,0 +1,27 @@
|
||||
### 1: Pythonインストール
|
||||
https://www.python.org/downloads/
|
||||
|
||||
### 2. venv設定
|
||||
```
|
||||
#仮想環境を設定する
|
||||
python -m venv env
|
||||
#仮想環境をアクティベート
|
||||
.\env\Scripts\activate
|
||||
```
|
||||
### 4:FastAPIとUvicornのインストール
|
||||
仮想環境にFastAPIとUvicorn(ASGIサーバー)をインストールします。
|
||||
1. fastapi
|
||||
```bash
|
||||
pip install fastapi
|
||||
```
|
||||
|
||||
2. Uvicornをインストールします
|
||||
|
||||
```bash
|
||||
pip install uvicorn
|
||||
```
|
||||
3. すべて依頼をインストール
|
||||
```bash
|
||||
pip install -r requirements.txt
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user