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.

python djangoフレームワークで最初にやること

Posted at

| 1.プロジェクトの作成

django-admin startproject {project_name}

| 2.アプリケーションの作成

python manage.py startapp {app_name}

| 3. setttings.pyを編集

| 3.1 作成したアプリケーションを追加

INSTALLED_APPS = []に次の値を入れる
app_nameはアプリケーションの名前

'app_name.apps.App_nameConfig'

最初のアプリ名はふつう、二個目のアプリ名は先頭の文字を大文字に

| 3.2. 日本語にする

LANGUAGE_CODE = 'ja'
TIME_ZONE = 'Asia/Tokyo'


djangoを独学しています。
備忘録のように書いています。

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?