LoginSignup
0
0

Djangoでアプリ開発〜超絶初級編〜

Last updated at Posted at 2023-10-06

Django使える人かっこいい

ということでお勉強。
まずは開発できる環境を作りたい。

開発用サーバーを立ち上げる

以下の魔法の言葉をターミナルに書き込む。

django-admin startproject フォルダー名

これにより今いるディレクトリ下に任意のフォルダーを作ることができる。今回はやるべきゲームが溜まりすぎているのでそれを管理するアプリでも作りたいなと考えている。
中身は以下のようになっている。便利だね。

todo_game/
├── manage.py
└── todo_game
    ├── __init__.py
    ├── asgi.py
    ├── settings.py
    ├── urls.py
    └── wsgi.py

続いて言語とタイムゾーンを日本にする。

LANGUAGE_CODE = "ja"

TIME_ZONE = "Asia/Tokyo"

マイグレーションファイルをデータベースに適用するための操作を行う。デフォルトはSQLiteらしい。SQL全然わからないのでとりあえずこのまま始めた。

% python manage.py migrate
Operations to perform:
  Apply all migrations: admin, auth, contenttypes, sessions
Running migrations:
  Applying contenttypes.0001_initial... OK
  Applying auth.0001_initial... OK
  Applying admin.0001_initial... OK
  Applying admin.0002_logentry_remove_auto_add... OK
  Applying admin.0003_logentry_add_action_flag_choices... OK
  Applying contenttypes.0002_remove_content_type_name... OK
  Applying auth.0002_alter_permission_name_max_length... OK
  Applying auth.0003_alter_user_email_max_length... OK
  Applying auth.0004_alter_user_username_opts... OK
  Applying auth.0005_alter_user_last_login_null... OK
  Applying auth.0006_require_contenttypes_0002... OK
  Applying auth.0007_alter_validators_add_error_messages... OK
  Applying auth.0008_alter_user_username_max_length... OK
  Applying auth.0009_alter_user_last_name_max_length... OK
  Applying auth.0010_alter_group_name_max_length... OK
  Applying auth.0011_update_proxy_permissions... OK
  Applying auth.0012_alter_user_first_name_max_length... OK
  Applying sessions.0001_initial... OK

準備は完了したはず。アプリケーションが動くかどうか試すために以下のコマンドを入力。

python manage.py runserver

すると、、、

Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).
October 06, 2023 - 08:19:53
Django version 4.2.2, using settings 'todo_game.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

いい感じじゃん!出力されたURLを押すと以下のサイトに飛んだ。開発用サーバがしっかり立ち上がったのでここからコードを書いてアプリを作っていくぜ。ちなみにポート番号はデフォルトで8000らしい。

image.png

0
0
1

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