Skip to content

Instantly share code, notes, and snippets.

View yadav-vikas's full-sized avatar
🤓
learning cloud development

Vikas yadav yadav-vikas

🤓
learning cloud development
  • india
View GitHub Profile
@yadav-vikas
yadav-vikas / Django-with-celery-and-rabbitmq.txt
Last active August 5, 2023 21:36
How to integrate Celery and RabbitMQ as systemd service in Linux
###################### please follow these steps to configure Celery & RabbitMQ ######################
#1. copy `install-rabbitmq.sh` on your system then change permissions of the file using `sudo chmod +x install-rabbitmq.sh`
and finally install RabbitMQ on your system by running `./install-rabbitmq.sh` .
#2. install `Celery` on the your python application and copy the venv/bin path location
#3. paste `celery.service` at /etc/systemd/system/ and update the file
#4. paste `celerybeat.service` at /etc/systemd/system/ and update the file
@yadav-vikas
yadav-vikas / install-docker-and-minikube.txt
Last active August 5, 2023 21:40
How to download and install docker on linux
#1. Please Download this files in your system
2. Please change it to executable files in your directory
(you can run `sudo chmod +x __file_name__.sh`
from django.contrib import admin
from .models import Personal
admin.site.register(Personal)