Djangoプロジェクトの初期設定を追加。環境変数に基づく設定をsettings.pyに実装し、ASGIおよびWSGI設定ファイルを作成。expensesアプリを追加し、基本的なURLルーティングとテンプレートを整備。作業ログをdiary.mdに追記。
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user