What problem does it solve?
Database query patterns and an organized IO structure for miolo applications, enabling consistent, readable, and maintainable data access across the codebase.
Core Features & Use Cases
- Domain-based organization under src/server/db/io, with clear separation of queries by feature.
- Consistent naming convention for data access: db_[domain]_[action], improving discoverability and traceability.
- CRUD templates, safe query execution (parameterization, ownership checks), and a shared make_query_filter helper to build dynamic WHERE clauses.
- Configuration, migrations, and best practices to enforce secure and scalable data access across environments.
Quick Start
Start by organizing your queries under src/server/db/io, implement the db_[domain]_[action] pattern, and adopt the make_query_filter helper for building where clauses.