From 598b4eb68ed6235100a481d7c09f8a022839645f Mon Sep 17 00:00:00 2001 From: Automated Action Date: Sun, 11 May 2025 18:57:44 +0000 Subject: [PATCH] Update README with SQLite configuration details MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Co-Authored-By: BackendIM --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf59c56..7a57125 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,15 @@ A RESTful API for an e-commerce application built with FastAPI and SQLite. pip install -r requirements.txt ``` -3. **Run database migrations**: +3. **Database Setup**: + The application uses SQLite as the database, which is stored in `../storage/db/db.sqlite` (outside the project root directory). This directory will be created automatically when the application runs. + +4. **Run database migrations**: ```bash alembic upgrade head ``` -4. **Start the API server**: +5. **Start the API server**: ```bash uvicorn main:app --host 0.0.0.0 --port 8000 --reload ```