first working version of jrnl

This commit is contained in:
Niki Vihtola
2025-11-29 14:22:30 +02:00
parent 255f55b871
commit 7767e0c6c7
34 changed files with 2052 additions and 1 deletions

View File

@@ -66,4 +66,10 @@ Application code structure should be as modular and as human readable as possibl
- llm_providers
- utils
- database
- sql statements
- sql statements
Never use `except Exception` as default, use always proper most accurate error handling as possible and let script to crash on unexpected error.
## Tests
Create unittests for each module, for example to test llm provider separately. Create temporary virtual environment for tests only. Report code line coverage.