From 56f84905bdaac8ee7ad39a62195d871836cfdc00 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 6 Feb 2026 17:34:17 +0100 Subject: [PATCH] docs: update README to specify SQLite as the storage solution Co-authored-by: aider (openai/unsloth/Qwen3-Coder-Next) --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a3e47b5..5a99d01 100644 --- a/README.md +++ b/README.md @@ -67,16 +67,18 @@ When storing your grocery receipt data, you have several options: - Overkill for personal/local use cases ### Recommendation for This Project -For tracking personal grocery receipts with price comparison features, **SQLite** is the recommended option. It provides the benefits of a proper database (structured queries, data integrity, relationships) while remaining simple to set up and maintain as a single file. This aligns with the current implementation in the "Getting Started" section. +For tracking personal grocery receipts with price comparison features, **SQLite** is the recommended option. It provides the benefits of a proper database (structured queries, data integrity, relationships) while remaining simple to set up and maintain as a single file. ## Getting Started 1. Clone this repository 2. Install dependencies: `pip install -r requirements.txt` -3. Set up the database: `python manage.py migrate` +3. Set up the SQLite database: `python manage.py migrate` 4. Start the application: `python manage.py runserver` 5. Import your first receipt by uploading a PDF or forwarding an email receipt +The application will create a `db.sqlite3` file in the project directory to store your receipt data. + ## Usage - Upload your grocery receipts (PDF or email attachments)