Skip to content

kattakke/backend

Repository files navigation

backend

手順

  1. pyenvをインストール

https://github.com/pyenv/pyenv

環境変数の設定もお忘れなく(Windows, Mac, Linuxの設定方法が異なることに注意)

  1. pythonバージョンの切り替え
pyenv install 3.11.0
pyenv local 3.11.0

次のコマンドで、正しく設定されたか確認

python --version
Python 3.11.0

上記のように表示されたらオッケー

  1. venvで仮想環境を立ち上げる
python -m venv env
  1. 仮想環境に入る

MacまたはLinuxの場合

source ./env/bin/activate

Windowsの場合

.\env\bin\activate.bat
  1. requirements.txtをインストール
python -m pip install -r ./src/requirements.txt
  1. コードを実行する
cd ./src
python3 -m openapi_server
  1. 作動確認

ここを開き、正しく表示されるか確認すること

以下の内容が表示されたら成功!

{
  "detail": "The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.",
  "status": 404,
  "title": "Not Found",
  "type": "about:blank"
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages