Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-celerybeat-status

Package Overview
Dependencies
Maintainers
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-celerybeat-status

A simple django admin extension that shows when your periodic are going to run next

  • 1.0.1
  • PyPI
  • Socket score

Maintainers
4

Django Celery Beat Status

PyPI - Version Supported Python Versions Supported Django Versions Build Status Coverage Status

A library that integrates with django admin and shows in a simple GUI when your periodic are going to run next.

Instalation

pip install django-celerybeat-status

Configuration

  1. Add "celerybeat_status" to your INSTALLED_APPS variable in django settings
INSTALLED_APPS = [
  ...
  "celerybeat_status",
]
  1. Create a url for the status check view
from django.urls import include, path

urlpatterns = [
  # other urls...
  path("admin/statuscheck/", include("celerybeat_status.urls")),  # celerybeat_status admin
  path("admin/", admin.site.urls),  # django admin
]

Usage

Check your tasks under /admin/statuscheck/periodic-tasks/ (if you configured your urls the way we suggested in this docs).

You can also find a link in /admin sidebar.

How you admin page will look like:

admin-page

How your tasks will be shown:

tasks-page

Contributing

Setting up the development environment

  1. Clone the repository.

  2. Create a virtual environment.

  3. Install the dependencies.

pip install -r requirements_test.txt
  1. Run the project. Relevant to check UI changes.
# Create the database and run the migrations.
python manage.py migrate
# Create a superuser. This will allow you to access the admin interface.
python manage.py createsuperuser
# Start the development server. You can view the application by navigating to the URL provided in the terminal.
python manage.py runserver
  1. Run the tests. This package uses tox to run tests on multiple evironments, please make sure they are passing before submitting a pull request.
tox

Commercial Support

This project, as other Vinta open-source projects, is used in products of Vinta clients. We are always looking for exciting work, so if you need any commercial support, feel free to get in touch: contact@vinta.com.br

Copyright (c) 2017 Vinta Serviços e Soluções Tecnológicas Ltda

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc