0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【備忘録】django rest frameworkのプロジェクト作成まで

Last updated at Posted at 2022-04-23

django rest frameworkを利用した際、やったことを忘れそうなので、可能な限りわかりやすく(あほな自分が後で見て分かるようにw)記載しておく。

開発環境

  • OS:Windows10 Pro
  • VS CODE:1.66.2

バージョン

  • python:3.10.4
  • django:4.0.4

Action

1.djangoのプロジェクトを作成。以下のコマンドを実行する。
image.png

2.以下のコマンドを実行し、作成したプロジェクトを実行してみる。
image.png

3.以下の内容が表示されたら、実行成功
image.png

4.以下のURLにアクセスすると、こんな画面が表示される。
 http://127.0.0.1:8000/
image.png

5.以下のコマンドを実行し、django rest frameworkをインストールする。
image.png

6.以下が表示されたら成功となる。
image.png

7.作成したdjangoプロジェクトをVisual Studio codeで開く。
image.png

8.settings.pyを開く。
image.png

9.settings.pyの「INSTALLED_APPS」に以下を追加する。
image.png

以上

思ったより簡単だったw

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?