Pantry tracker app with: - FastAPI backend + Vue 3 SPA frontend - SQLite via circuitforge-core (migrations 001-005) - Inventory CRUD, barcode scan, receipt OCR pipeline - Expiry prediction (deterministic + LLM fallback) - CF-core tier system integration - Cloud session support (menagerie)
7 lines
No EOL
144 B
Python
7 lines
No EOL
144 B
Python
# app/__init__.py
|
|
"""
|
|
Kiwi: Pantry tracking and leftover recipe suggestions.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "Alan 'pyr0ball' Weinstock" |