-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README to reflect Django newer versions
- Loading branch information
Showing
1 changed file
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,29 +9,29 @@ A library that integrates with django admin and shows in a simple GUI when your | |
|
||
## Instalation | ||
|
||
``` bash | ||
```bash | ||
pip install django-celerybeat-status | ||
``` | ||
|
||
## Configuration | ||
|
||
1. Add `'celerybeat_status'` to your `INSTALLED_APPS` variable in django settings | ||
1. Add `"celerybeat_status"` to your `INSTALLED_APPS` variable in django settings | ||
|
||
``` python | ||
```python | ||
INSTALLED_APPS = [ | ||
... | ||
'celerybeat_status', | ||
"celerybeat_status", | ||
] | ||
``` | ||
|
||
2. Create a url for the status check view | ||
|
||
```python | ||
from django.conf.urls import url, include | ||
from django.urls import include, path | ||
|
||
urlpatterns = [ | ||
# other urls... | ||
url(r'^admin/statuscheck/', include('celerybeat_status.urls', namespce='celerybeat_status')), | ||
path("admin/statuscheck/", include("celerybeat_status.urls", namespace="celerybeat_status")), | ||
] | ||
``` | ||
|
||
|
@@ -45,12 +45,10 @@ How you admin page will look like: | |
|
||
![admin-page](https://raw.githubusercontent.com/vintasoftware/django-celerybeat-status/master/README_IMAGES/django-celerybeat-status-admin.png) | ||
|
||
|
||
How your tasks will be shown: | ||
|
||
![tasks-page](https://raw.githubusercontent.com/vintasoftware/django-celerybeat-status/master/README_IMAGES/django-celerybeat-status-tasks.png) | ||
|
||
|
||
## 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: [email protected] | ||
|