30 lines
578 B
Markdown
30 lines
578 B
Markdown
# 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.
|