2
1

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プロジェクト, アプリの作成手順

Last updated at Posted at 2022-10-19

【事前準備】
1.こちら(https://qiita.com/Kota0925/items/e60c1327d71d226c20b6 )を事前に行ってください。

【Djangoのインストール】(初回のみ)
1.コマンドプロンプトで仮想環境を立ち上げる
2.「pip install django」を実行
3.「pip freeze」を実行し、インストールされていることを確認

【プロジェクトの作成】
1.コマンドプロンプトで仮想環境を立ち上げる
2.「django-admin startproject ○○」を実行
3.指定したディレクトリに「○○」フォルダが作成されていることを確認

【アプリケーションの作成】
1.コマンドプロンプトで仮想環境を立ち上げる
2.アプリケーションを作成したいプロジェクトのディレクトリに移動
3.「django-admin startapp ××」を実行
4.指定したディレクトリに「××」フォルダが作成されていることを確認

【サーバーの起動】
1.コマンドプロンプトで起動したいプロジェクトのディレクトリに移動
2.「manage.py runserver」を実行
3.指定されたURL「http://127.0.0.1:8000/ 」 にアクセスし、トップページが表示されることを確認

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?