Skip to main content

GrooveShop Django Backend

Project description

Coverage Status

Grooveshop Django API

Overview

This project delivers a robust headless API using Django and Django REST Framework, with support for both synchronous and asynchronous environments facilitated by Uvicorn (ASGI) and Gunicorn (WSGI) respectively. It leverages Django Allauth for authentication, utilizes Celery with Redis for task management, and employs Postgres for data storage. Features include caching, multi-language support, and comprehensive test coverage. The API also includes a built-in Django admin panel for efficient administrative operations.

Project Structure

The Django applications within this project include:

  • Core: Core functionalities and shared utilities.
  • User: User management and authentication.
  • Product: Product catalog management.
  • Order: Order processing and management.
  • Search: Advanced search capabilities.
  • Slider: Dynamic UI sliders for promotions and highlights.
  • Blog: Content management for blog posts.
  • SEO: SEO tools and configurations.
  • Tip: User tips and advice sections.
  • VAT: VAT calculation and management.
  • Country: Country-specific configurations.
  • Region: Regional data and settings.
  • Pay Way: Payment method configurations.
  • Session: User session management.
  • Cart: Shopping cart functionalities.
  • Notification: User notification mechanisms.
  • Authentication: Additional authentication layers.
  • Contact: Contact management and communication tools.

Features

  • Authentication and User Management: Streamlined user account and session management.
  • Multi-Language Support: Accommodates various languages enhancing global usability.
  • Advanced Search and Filtering: Leverages Postgres Full-Text Search for efficient data retrieval.
  • Task Scheduling: Utilizes Celery for background task management.
  • Performance Optimization: Implements caching strategies to improve API responsiveness.
  • Testing: Includes comprehensive unit and integration tests.
  • Admin Panel: Django's built-in admin panel for straightforward management.
  • API Documentation: Well-documented API using Swagger and Redoc.
  • Containerization: Docker integration for simplified setup and deployment.

Technologies

  • Frameworks: Django, Django REST Framework
  • Authentication: Django Allauth
  • Database: PostgreSQL
  • Task Management: Celery
  • Message Broker: Redis
  • Server Setup: Uvicorn (ASGI), Gunicorn (WSGI)
  • Containerization: Docker

Setup

Prerequisites

  • Python 3.12 or higher
  • Django 5.0 or higher
  • PostgreSQL
  • Redis

License

This project is open-sourced under the MIT License. See the LICENSE file for more details.

Docker Commands for Django Projects

Using Docker Compose

Database Operations

  • Run DB Migrations: docker compose run backend sh -c "python manage.py makemigrations --noinput"
  • Apply Migrations: docker compose run backend sh -c "python manage.py migrate"

User Management

  • Create Superuser: docker compose run backend sh -c "python manage.py createsuperuser"

Static Files

  • Collect Static Files: docker compose run backend sh -c "python manage.py collectstatic --noinput"

Testing and Coverage

  • Run Tests: docker compose run backend sh -c "python manage.py test tests/"
  • Run Tests with Coverage (excluding specific files and folders): docker compose run backend sh -c "coverage run --omit=*/migrations/*,*/management/*,*/manage.py,*/setup.py,*/asgi.py,*/wsgi.py --source='.' manage.py test tests/ && coverage report && coverage html"
  • Generate Coverage HTML Reports: docker compose run backend sh -c "coverage html"

Data Seeding

  • Seed Database with Fake Data: docker compose run backend sh -c "python manage.py seed_all"

Custom Docker Compose Files

  • Run with Specific Compose File: docker compose -f <docker-compose-file.yml> up -d --build

Using Docker Exec

General Commands

  • Execute Command in Container: docker exec -it <container_id> <command>
  • Run Specific Shell Command: docker exec -it <container_id> sh -c "<command>"

Localization

  • Generate Locale Messages: docker exec -it <container_id> sh -c "python manage.py makemessages -l <locale>" docker exec -it <container_id> sh -c "python manage.py makemessages --all --ignore=env"
  • Compile Locale Messages: docker exec -it <container_id> sh -c "python manage.py compilemessages --ignore=env"

Additional Configuration for Development Tools

Celery

Starting Celery Services

  • Run a local Celery beat scheduler using the Django database scheduler: celery -A core beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler
  • Run a Celery worker: celery -A core worker -E -l info --pool=solo
  • Monitor Celery with Flower: celery -A core flower --broker=amqp://guest:guest@localhost:5672// --broker_api=http://guest:guest@localhost:15672/api// --port=5555

Uvicorn

Running the ASGI Application

  • Start Uvicorn for ASGI applications: uvicorn asgi:application --port 8000 --workers 4 --log-level debug --reload

Python Development Setup and Utilities

Python Version 3.12.0

Virtual Environment Management

  • Install Virtualenv: pip install virtualenv
  • Create Virtual Environment: virtualenv <env_name>
  • Activate Virtual Environment:
    • Unix/Linux: source <env_name>/bin/activate
    • Windows: <env_name>\Scripts\activate
  • Deactivate Virtual Environment: deactivate
  • Install Requirements: pip install -r requirements.txt
  • Install Environment-Specific Requirements: pip install -r requirements/<env_name>.txt

Django Commands

  • Install Django: pip install django
  • Start a New Project: django-admin startproject <project_name>
  • Start a New App: python manage.py startapp <app_name>
  • Database Migrations and Management:
    • Make migrations: python manage.py makemigrations
    • Apply migrations: python manage.py migrate
    • Flush the database: python manage.py sqlflush
    • Populate database with seed data (Single Factory Example): python manage.py factory_seed --model="BlogPost" --count="100"
    • Populate database with seed data (All Factories Example): python manage.py seed_all --model-counts="Country=10,Product=100"
  • Manage Users:
    • Create superuser: python manage.py createsuperuser
  • Manage Static Files: python manage.py collectstatic
  • Testing and Debugging:
    • Run tests: python manage.py test
    • Access Django shell: python manage.py shell
    • Enhanced shell: python manage.py shell_plus
    • Database shell: python manage.py dbshell
  • Run Development Server: python manage.py runserver

Code Formatting and Linting

  • Navigate to Source Directory: cd src
  • Pre-commit and Black Formatting:
    • Install pre-commit hooks: pre-commit install
    • Run pre-commit hooks: pre-commit run --all-files
    • Format code with Black: black .

Poetry for Dependency Management

  • Install Poetry: Unix/Linux: curl -sSL https://install.python-poetry.org | python3 - Windows: (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -
  • Manage Projects and Dependencies:
    • Create a new project: poetry new <project_name>
    • Install dependencies: poetry install
    • Add or remove a dependency: poetry add <dependency_name> and poetry remove <dependency_name>
    • Update a specific dependency or lock file: poetry update <dependency_name> and poetry lock
    • Run a script: poetry run <script_name>
    • Enter virtual environment shell: poetry shell

Strawberry GraphQL

  • Install Strawberry: pip install strawberry-graphql
  • Run Strawberry Server: strawberry server
  • Run with Project Schema: strawberry server core.graphql.schema:schema

Anaconda for Environment Management

  • Install Anaconda: Anaconda Installation Guide
  • Conda Environment Commands:
    • Create: conda create --name <env_name> python=3.12.0
    • Activate/Deactivate: conda activate <env_name> and conda deactivate
    • Create from YML: conda env create -f environment.yml

Django REST Framework - Spectacular

  • Generate API Schema: python manage.py spectacular --color --file schema.yml

Git Command Usage

Tag Management

Deleting Tags

  • Delete Remote Tags:

    • Delete all remote tags: git tag -l | xargs -n 1 git push --delete origin
  • Delete Local Tags:

    • Delete all local tags: git tag -l | xargs git tag -d

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grooveshop_django_api-0.168.0.tar.gz (35.3 MB view details)

Uploaded Source

Built Distribution

grooveshop_django_api-0.168.0-py3-none-any.whl (187.4 kB view details)

Uploaded Python 3

File details

Details for the file grooveshop_django_api-0.168.0.tar.gz.

File metadata

File hashes

Hashes for grooveshop_django_api-0.168.0.tar.gz
Algorithm Hash digest
SHA256 f88f3e663580314b2c1459a411ffda2985696e7b5bc49c8c57d74660d7875568
MD5 9648119aec18e635ff7d339d50822385
BLAKE2b-256 c8f90b27577b26dd9da6e524ed58d2aa5797866de95c12baf351d3a9fdadd32e

See more details on using hashes here.

Provenance

File details

Details for the file grooveshop_django_api-0.168.0-py3-none-any.whl.

File metadata

File hashes

Hashes for grooveshop_django_api-0.168.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e2e380405662afdd8d1b949a64bfa6f5872e4bc87affa3fb81a74fae82a0d053
MD5 8769ba82086171cbc6a0065e9570e16f
BLAKE2b-256 105ed51652640576bbcddc9dc9beb5d9693f359ca6e25af33843f9fe71267844

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page