An open API service indexing awesome lists of open source software.

https://github.com/ramin971/watermarking

### Watermarking Project with Django and Celery### This project is a web application built with Django and Django REST Framework for handling image uploads and adding watermarks to images. The application leverages Celery for asynchronous task processing to efficiently handle the watermarking process in the background.
https://github.com/ramin971/watermarking

asynchronous celery django-rest-framework pillow redis watermark watermark-image watermarking watermarking-image

Last synced: 8 months ago
JSON representation

### Watermarking Project with Django and Celery### This project is a web application built with Django and Django REST Framework for handling image uploads and adding watermarks to images. The application leverages Celery for asynchronous task processing to efficiently handle the watermarking process in the background.

Awesome Lists containing this project

README

          

# HOW TO USE...
## Installation

1. Clone the repository:

git clone git@github.com:ramin971/watermarking.git

2. Install the required dependencies:

pip install -r requirements.txt

3. Set up the database:

python manage.py makemigrations
python manage.py migrate

4. Create a superuser for accessing the Django admin panel:

python manage.py createsuperuser

5. Run the development server:

python manage.py runserver

6. Run Redis on Docker:

docker run --rm --name redis -p 6379:6379 redis

7. Run Celery:

celery -A watermarking worker --loglevel=info