0
0

Django初期設定のコマンドをメモ

Posted at

追記予定あり…

Django初期設定

1 Djangoプロジェクトを作成します。

django-admin startproject quiz_project
cd quiz_project

2 Djangoアプリを作成します。

python3 manage.py startapp quiz_app

3 プロジェクトのsettings.pyでアプリを登録します。

INSTALLED_APPS = [
    ...
    'quiz_app',
    ...
]
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