Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 861 Bytes

README.md

File metadata and controls

52 lines (35 loc) · 861 Bytes

Receipt Tracker Project

This repository contains a Django project that includes basic functionality for managing receipts.

Getting Started

Installation

Clone the repository:

git clone https://github.com/chemsedd/receipt_tracker.git
cd receipt_tracker

Create and activate a virtual environment:

python -m venv venv
source venv/bin/activate      # On Linux/Mac
# or
.\venv\Scripts\activate       # On Windows

Install dependencies

pip install -r requirements.txt

Database setup

Apply initial migrations:

python manage.py migrate

Load sample data using fixtures:

python manage.py generate_fixtures

Usage

Run the app

python manage.py runserver

Visit http://localhost:8000/login in your browser to access the application and login.