add bankclient

This commit is contained in:
2026-04-24 20:30:35 +02:00
parent 5fb5194468
commit c178fbfce8
10 changed files with 2832 additions and 21 deletions
+8 -2
View File
@@ -32,7 +32,7 @@ Automate your financial tracking without sacrificing privacy. Actualize pulls yo
```bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install actualpy enablebanking_sdk python-dotenv
pip install actualpy enablebanking_sdk python-dotenv fastapi "uvicorn[standard]"
```
3. **Configure environment variables:**
@@ -60,7 +60,13 @@ Automate your financial tracking without sacrificing privacy. Actualize pulls yo
2. **Sync:**
Run the sync script to pull transactions and push them to Actual.
```bash
python sync.py
python sync.py
```
3. **API Mode:**
Start the FastAPI server.
```bash
uvicorn src.main:app --reload
```
## 📦 Tech Stack