0
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 3 years have passed since last update.

【メモ】【自分用】Djangoコマンド

Last updated at Posted at 2021-01-11

Djnagoコマンドのメモ書き

Djangoを使用した時に使ったもの
忘れないように

Djangoインストール

pip install django

プロジェクト作成

プロジェクト作成したいディレクトリで実行

django-admin startproject "プロジェクト名"

スーパーユーザ作成

python manage.py createsuperuser

アプリケーション作成

manage.pyが格納されているディレクトリで実行
※プロジェクト作成時に出来たフォルダ内にmanage.pyが格納されている

python manage.py startapp "アプリ名"

サーバー起動

manage.pyが格納されているディレクトリで実行

python manage.py runserver
python manage.py runserver "ポート番号"

マイグレーションの準備

manage.pyが格納されているディレクトリで実行

python manage.py makemigrations "アプリ名"

データベース反映

manage.pyが格納されているディレクトリで実行

python manage.py migrate
0
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
0
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?