Djangoプロジェクトの初期設定を追加。環境変数に基づく設定をsettings.pyに実装し、ASGIおよびWSGI設定ファイルを作成。expensesアプリを追加し、基本的なURLルーティングとテンプレートを整備。作業ログをdiary.mdに追記。

This commit is contained in:
president
2025-12-19 15:30:38 +09:00
parent bfca4ee185
commit 5fc2a31f50
22 changed files with 379 additions and 7 deletions

View File

@@ -1,3 +1,9 @@
DJANGO_SECRET_KEY=change-me
DJANGO_DEBUG=true
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/card_data_sorting
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1
DB_ENGINE=django.db.backends.postgresql
DB_NAME=card_data_sorting
DB_USER=postgres
DB_PASSWORD=postgres
DB_HOST=localhost
DB_PORT=5432