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.
- Host: GitHub
- URL: https://github.com/ramin971/watermarking
- Owner: ramin971
- Created: 2025-02-08T07:35:58.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-02-08T07:54:58.000Z (8 months ago)
- Last Synced: 2025-02-08T08:29:51.480Z (8 months ago)
- Topics: asynchronous, celery, django-rest-framework, pillow, redis, watermark, watermark-image, watermarking, watermarking-image
- Language: Python
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HOW TO USE...
## Installation1. 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 migrate4. 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