diff --git a/README.md b/README.md index 40ba472..bb78961 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,6 @@ A simple Website to provide a `NNI (Non-Nerd Interface)` to [epub2go.py](https:/ ## Development This project uses [watchman](https://facebook.github.io/watchman/) for file watching and reloading. -Follow the [official instructions](https://facebook.github.io/watchman/docs/install.html) for your system to install, django will default to its standard watcher otherwise. \ No newline at end of file +Follow the [official instructions](https://facebook.github.io/watchman/docs/install.html) for your system to install, django will default to its standard watcher otherwise. + +Also, [celery](https://docs.celeryq.dev/en/stable/) is used as a task queue with [redis](https://hub.docker.com/_/redis) as backend. \ No newline at end of file diff --git a/src/epub2go_web/celery.py b/src/epub2go_web/celery.py index 2c7925e..3ea8df4 100644 --- a/src/epub2go_web/celery.py +++ b/src/epub2go_web/celery.py @@ -20,4 +20,4 @@ app.autodiscover_tasks() @app.task(bind=True, ignore_result=True) def debug_task(self): - print(f'Request: {self.request!r}') \ No newline at end of file + print(f'Request: {self.request!r}') diff --git a/src/epub2go_web/templates/home.html b/src/epub2go_web/templates/home.html index ea12179..d6ba384 100644 --- a/src/epub2go_web/templates/home.html +++ b/src/epub2go_web/templates/home.html @@ -12,7 +12,7 @@ Bookmarklet - + GitHub