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 1 year has passed since last update.

Django スタートアップ その1(プロジェクト作成編)

Last updated at Posted at 2023-02-26

基本コマンド

サーバーの起動(8080で。デフォルトは8000)

コマンドライン
python manage.py runserver 8080

プロジェクト作成

コマンドライン
django-admin startproject project_name  <path>

設定の変更

project_name/settings.py

タイムゾーンの変更

project_name/settings.py
TIME_ZONE = 'Asia/Tokyo'

言語の変更

project_name/settings.py
LANGUAGE_CODE = 'ja'

静的ファイルのパス

project_name/settings.py
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

静的ファイルのパス

project_name/settings.py
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

セキュリティの設定(ALLOWED_HOSTS)

  • HTTPリクエスト内のホストヘッダー情報に、ALLOWED_HOSTSでしたドメイン名(IPアドレス)が含まれている場合のみ、Webサービスがクライアントに提供される。
  • ALLOWED_HOSTSにはWebサービスを提供するドメイン名をリストで指定する
project_name/settings.py
ALLOWED_HOSTS = ['127.0.0.1', '.<公開したいドメイン名>']

データベースのセットアップ

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

コマンドライン
python manage.py makemigrations

マイグレーションファイルをデータベースに適用

コマンドライン
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?