Skip to content

Commit d99e2d9

Browse files
committed
Release v1.0.20
1 parent 074c2dc commit d99e2d9

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [1.0.20] 2024-02-27
4+
### Changes
5+
6+
- Update DOCS (readme)
7+
- Added `Celery` Section
8+
39
## [1.0.19] 2024-02-08
410
### Changes
511

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,23 @@ By default, the app redirects guest users to authenticate. In order to access th
166166

167167
<br />
168168

169+
## Start Celery (async task)
170+
171+
- Make sure you have a Redis Server running: `redis://localhost:6379`
172+
- `$ redis-cli` and type `ping`
173+
- In the base directory inside `tasks_scripts` folder you need to write your scripts file.
174+
- Run the celery command from the CLI.
175+
176+
```bash
177+
$ export DJANGO_SETTINGS_MODULE="core.settings"
178+
$ celery -A apps.tasks worker -l info -B
179+
```
180+
181+
- You will see a new route `Apps -> Tasks` in the sidebar.
182+
- You can start and cancel any task from the UI.
183+
184+
<br />
185+
169186
## Enable Social Login
170187

171188
> 👉 **Github Setup** - [Create an OAuth App](https://docs.github.com/en/developers/apps/building-oauth-apps/creating-an-oauth-app)

0 commit comments

Comments
 (0)