まず,Web サーバを起動すると開発用サーバの URL が表示されます.
...\django_comment_api>python manage.py runserver ⏎ Watching for file changes with StatReloader Performing system checks... System check identified no issues (0 silenced). You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions. Run 'python manage.py migrate' to apply them. November 23, 2023 - 13:48:58 Django version 4.2.7, using settings 'django_comment_api.settings' Starting development server at http://127.0.0.1:8000/
表示された URL (http://127.0.0.1:8000/) に Web ブラウザからアクセスすると,次のようなページが表示されるはずです.Web サーバを停止するには Ctrl + C を押します.
基本設定を行なって,ロケールを日本語に,タイムゾーンを Asia/Tokyo
に変更します.django_comment_api フォルダにある settings.py から該当箇所を検索して,次のとおり編集してください.
django_comment_api\settings.py(抜粋)
# Internationalization
# https://docs.djangoproject.com/en/4.2/topics/i18n/
LANGUAGE_CODE = "ja"
TIME_ZONE = "Asia/Tokyo"
USE_I18N = True
USE_TZ = False
もう一度,Web サーバを起動します.
...\django_comment_api>python manage.py runserver ⏎
Watching for file changes with StatReloader
Performing system checks...
System check identified no issues (0 silenced).
You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
November 23, 2023 - 13:51:22
Django version 4.2.7, using settings 'django_comment_api.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
基本設定を終えると次のとおり日本語でメッセージが表示されるはずです.
Web サーバを Ctrl + C で停止し,Git でコミットします.(以降のページではサーバの起動・停止やGitのコミットについての説明は省略します.)