Skip to content

Commit dc3bc81

Browse files
committed
Release v1.0.16
1 parent ebea8dd commit dc3bc81

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.16] 2024-02-27
4+
### Changes
5+
6+
- Update DOCS (readme)
7+
- Added `Celery` Section
8+
39
## [1.0.15] 2024-02-10
410
### Changes
511

README.md

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

168168
<br />
169169

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

172189
> 👉 **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)