プロジェクトの環境設定ファイルを追加し、README.mdに開発セットアップ手順を追記。作業ログ用のdiary.mdを新規作成し、.gitignoreを更新して不要なファイルを除外。サンプルデータCSVファイルを追加。
This commit is contained in:
30
README.md
30
README.md
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user