Skip to content

Commit

Permalink
Release v1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Feb 27, 2024
1 parent ebea8dd commit dc3bc81
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [1.0.16] 2024-02-27
### Changes

- Update DOCS (readme)
- Added `Celery` Section

## [1.0.15] 2024-02-10
### Changes

Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,23 @@ By default, the app redirects guest users to authenticate. In order to access th

<br />

## Start Celery (async task)

- Make sure you have a Redis Server running: `redis://localhost:6379`
- `$ redis-cli` and type `ping`
- In the base directory inside `tasks_scripts` folder you need to write your scripts file.
- Run the celery command from the CLI.

```bash
$ export DJANGO_SETTINGS_MODULE="core.settings"
$ celery -A apps.tasks worker -l info -B
```

- You will see a new route `Apps -> Tasks` in the sidebar.
- You can start and cancel any task from the UI.

<br />

## Enable Social Login

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

0 comments on commit dc3bc81

Please sign in to comment.