Skip to content

arielen/test_CifraK

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

6 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ Django Project News/Places with Celery & Docker

πŸ“Œ Table of Contents

Section Description
Project Description Overview of the project and its features
Technologies Used List of technologies utilized in the project
Features Functionalities provided by the system
Setup & Installation Steps to set up and run the project
Testing Instructions for running tests and linting
Project Structure Folder structure explanation
Usage Presentation Presentation of Service Work and API usage
Contacts Developer contact information

πŸš€ Project Description

This project is a Django-based web application that includes:

  • πŸ“‘ Celery for background task processing.
  • πŸ—Ί PostgreSQL with PostGIS for geospatial data.
  • πŸ”₯ Redis as a message broker for Celery.
  • βœ‰ SMTP4Dev for local email testing.
  • 🐳 Docker Compose for easy setup and deployment.
  • πŸ“Š Flower for monitoring Celery tasks.

βš™οΈ Technologies Used

  • Backend: Python 3.13 Django REST Framework Celery
  • Database: PostgreSQL|Postgis
  • Task Queue: Redis
  • Email Testing: SMTP4Dev
  • Monitoring: Flower
  • Testing & CI/CD: GitHub Actions Tox Pytest Ruff
  • Deployment: Docker & Docker Compose

🎯 Features

πŸ“° News Management

  • βœ… CRUD operations for news with fields:
    • Title
    • Main image (auto-generates preview)
    • Rich-text content (via Summernote)
    • Publication date
    • Author
  • βœ… Admin panel with rich-text editor for news editing
  • βœ… Automatic preview image generation (200px on the shortest side)

πŸ“© Email Notifications for News

  • βœ… Scheduled Celery task to send daily emails about published news.
  • βœ… Configurable email settings via Django Constance:
    • Recipient list
    • Email subject
    • Email body
    • Scheduled sending time

πŸ“ Places Management

  • βœ… Import places from an XLSX file, including:
    • Name
    • Geo-coordinates (PointField)
    • Rating (0 to 25)
  • βœ… Admin panel integration with a map widget for coordinate selection

🌦 Weather Summary Collection

  • βœ… Scheduled Celery task to fetch weather data for all places.
  • βœ… Configurable task frequency from the admin panel (default: every hour).
  • βœ… Weather data provider: Open-Meteo API
  • βœ… Stored weather data includes:
    • Temperature (Β°C)
    • Humidity (%)
    • Atmospheric pressure (mmHg)
    • Wind direction
    • Wind speed (m/s)
  • βœ… Weather records are immutable once saved
  • βœ… Admin panel filter for places and date selection
  • βœ… Export weather data to XLSX format

πŸ›  Additional Features

  • βœ… Dockerized setup for easy deployment
  • βœ… Celery task monitoring with Flower
  • βœ… Mail monitoring with SMTP4Dev (only docker-compose run)
  • βœ… Testing with Pytest & Tox

πŸ› οΈ Setup & Installation

Follow the steps below to set up and run the project locally.

1. Clone the Repository

Clone the repository to your local machine:

git clone https://github.com/arielen/test_CifraK.git
cd test_CifraK

2. Configure Environment Variables

Create a .env file in the root directory by copying the example file:

cp .env.example .env

Then, update the .env file according to your configuration.

3. Running the Project

You can run the project using one of the following methods:

A. Using Docker-Compose

If you have Docker installed, use Docker Compose to build and run all services (Django, Celery, Redis, PostgreSQL, and SMTP4Dev). All migrations will be executed automatically:

docker-compose up -d --build

B. Running Locally without Docker

  1. Running the Django Application

    Create a virtual environment, install dependencies, perform migrations, create a superuser, and run the development server:

    python -m venv .venv
    source .venv/bin/activate  # On Windows use: .venv\Scripts\activate
    pip install -r backend/requirements.txt
    python backend/manage.py makemigrations
    python backend/manage.py migrate
    python backend/manage.py createsuperuser
    python backend/manage.py runserver
  2. Running Celery Worker & Beat

    Navigate to the backend directory and start Celery with the worker and Beat:

    cd backend
    celery -A config worker -B -l info
  3. (Optional) Running Celery Flower

    To monitor Celery tasks, you can use Flower. Run the following command:

    celery -A config flower --port=5555

    Flower will be available at http://localhost:5555.

4. Admin Interface and API Documentation


βœ… Testing

To run tests with tox:

tox  # run all tests, coverage and lint

or

tox -e coverage  # run target only coverage
tox -e lint  # run target only lint with ruff

Test coverage must be at least 95%. If the code is not 95% covered, the overall coverage will drop.


πŸ“‚ Project Structure

πŸ“‚ backend
β”œβ”€β”€ πŸ“‚ config                  # Django settings & Celery config
β”œβ”€β”€ πŸ“‚ news                    # News app (models, views, tasks)
β”œβ”€β”€ πŸ“‚ places                  # Places app (geospatial data, weather tasks)
β”œβ”€β”€ πŸ“‚ templates               # Custom admin templates
β”œβ”€β”€ πŸ“œ manage.py               # Django entry point
β”œβ”€β”€ πŸ“œ requirements.txt        # Dependencies
β”œβ”€β”€ πŸ“œ Dockerfile              # Dockerfile for Django
β”œβ”€β”€ πŸ“œ __main__.py             # Main script
β”œβ”€β”€ πŸ“œ create_admin.py         # Superuser creation script
β”œβ”€β”€ πŸ“‚ tests                   # Test cases
πŸ“œ .env.example                # Example environment variables
πŸ“œ docker-compose.yml          # Docker Compose setup
πŸ“œ pyproject.toml              # Configuration for ruff & pytest
πŸ“œ tox.ini                     # Testing configuration
πŸ“œ README.md                   # Project documentation

βœ‰ Email & Celery Monitoring

πŸ”Ή Email Testing with SMTP4Dev

The project uses smtp4dev for testing email functionality. Access the UI at: http://localhost:8025

πŸ”Ή Monitor Celery Tasks with Flower

Access Flower to monitor Celery tasks: http://localhost:5555


πŸŽ₯ Usage presentation


πŸ“ž Contacts

πŸ’» Developer: arielen
πŸ“§ Email: pavlov_zv@mail.ru
πŸ“§ TG: 1 0

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages