This repository contains a Django project that includes basic functionality for managing receipts.
git clone https://github.com/chemsedd/receipt_tracker.git
cd receipt_tracker
python -m venv venv
source venv/bin/activate # On Linux/Mac
# or
.\venv\Scripts\activate # On Windows
pip install -r requirements.txt
python manage.py migrate
python manage.py generate_fixtures
python manage.py runserver
Visit http://localhost:8000/login in your browser to access the application and login.