プロジェクトの環境設定ファイルを追加し、README.mdに開発セットアップ手順を追記。作業ログ用のdiary.mdを新規作成し、.gitignoreを更新して不要なファイルを除外。サンプルデータCSVファイルを追加。

This commit is contained in:
president
2025-12-19 15:15:41 +09:00
parent bf74153533
commit 8aeaa49dd8
9 changed files with 87 additions and 178 deletions

View File

@@ -1,3 +1,29 @@
# ------
# Card-data-sorting
何某の元ネタとなる
Business-focused Django app for importing credit card CSV statements and splitting business vs household expenses.
## Development setup
### Prerequisites
- Python 3.9+ (local)
- PostgreSQL 14+
- libffi/libpango/libcairo (for WeasyPrint)
### Setup steps
```bash
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements-dev.txt
cp .env.example .env
```
### Environment variables
Edit `.env` to match your local DB.
### Next actions
- Initialize the Django project and app structure.
- Configure PostgreSQL settings and migrations.