0
1

More than 3 years have passed since last update.

DjangoでSNS作成時のコマンド

Posted at

Djangoのアプリケーション作成時に必要なコマンドです。
自分でもよく忘れるのでメモとして残しておきます。

Djangoのプロジェクト作成(初め方)

django-admin startproject プロジェクト名

アプリケーションの作成

python manage.py startapp アプリケーション名

Webサーバーの起動

python manage.py runserver

管理者の作成

python manage.py createsuperuser

マイグレーションファイルの作成

python manage.py makemigrations アプリケーション名

マイグレーションを実行

python manage.py migrate

Djangoのブラウザアドレス

http://localhost:8000/アプリケーション名/

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