https://github.com/sachnaror/django_filter
Django Product List with Filters
https://github.com/sachnaror/django_filter
django-filter filter
Last synced: 3 months ago
JSON representation
Django Product List with Filters
- Host: GitHub
- URL: https://github.com/sachnaror/django_filter
- Owner: sachnaror
- Created: 2024-06-19T04:14:52.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T15:34:23.000Z (11 months ago)
- Last Synced: 2024-12-31T09:14:47.406Z (5 months ago)
- Topics: django-filter, filter
- Language: Python
- Homepage:
- Size: 1.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Product List with Filters
This project demonstrates how to create a product list with filtering functionality using Django and django-filter.
## Prerequisites
- Python 3.12
## Installation
1. Clone the repository:
```bash
git clone https://github.com/sachnaror/django-product-filter.git
cd django-product-filter
```2. Create and activate a virtual environment:
```bash
python -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```3. Install the required packages:
```bash
pip install -r requirements.txt
```4. Apply migrations and create a superuser:
```bash
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
```5. Run the development server:
```bash
python manage.py runserver
```## Project Structure


