Skip to content

Instantly share code, notes, and snippets.

View PraneethKarnena's full-sized avatar
🎯
Focusing

Praneeth Karnena PraneethKarnena

🎯
Focusing
View GitHub Profile
@PraneethKarnena
PraneethKarnena / rabbitmq.sh
Last active September 8, 2021 04:42
A list of bash commands to set up RabbitMQ
# Install rabbitmq
sudo apt install -y rabbitmq-server
# Set memory limit
# sudo nano /etc/rabbitmq/rabbitmq.conf
vm_memory_high_watermark.absolute = 700MiB
# Enable management plugin
rabbitmq-plugins enable rabbitmq_management
# Visit http://{HOST}:15672/
@PraneethKarnena
PraneethKarnena / postgres.sh
Last active October 5, 2021 17:33
PostgreSQL database dump/restore commands
pg_dump -h 127.0.0.1 -U db_user -p 5432 -d db_name -O -x > dump.bak
psql -d db_name -U db_user < dump.bak
psql --host=127.0.0.1 --port=5432 --username=db_user --password --dbname=db_name < dump.bak
@PraneethKarnena
PraneethKarnena / settings.py
Last active January 28, 2023 09:56
A Django 3.2 production-grade settings
"""
Django settings for example project.
Generated by 'django-admin startproject' using Django 3.2.5.
For more information on this file, see
https://docs.djangoproject.com/en/3.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
@PraneethKarnena
PraneethKarnena / python_dev_setup.sh
Last active July 31, 2021 21:48
List of installation commands for Python development environment
pip install black pylint pylint-django pylint-celery isort pre-commit
pre-commit install
# .editorconfig - https://gist.github.com/PraneethKarnena/da58997d260caa59aa41236dd93a51cd
# pyproject.toml - https://gist.github.com/PraneethKarnena/8e868d91bec7d71da0cb3dfb12902c8c
# .pre-commit-config.yaml - https://gist.github.com/PraneethKarnena/36e41e23b70d9651c6c109976a038bb6
@PraneethKarnena
PraneethKarnena / .pre-commit-config.yaml
Last active December 4, 2022 14:28
A sample .pre-commit-config.yaml file
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: check-yaml
- id: trailing-whitespace
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-json
@PraneethKarnena
PraneethKarnena / pyproject.toml
Last active December 4, 2022 14:50
Sample pyproject.toml file
[tool.black]
line-length = 88
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
@PraneethKarnena
PraneethKarnena / .editorconfig
Last active April 13, 2024 16:22
Sample .editorconfig file for Python
# https://editorconfig.org/
root = true
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
@PraneethKarnena
PraneethKarnena / docker_commands.sh
Last active July 18, 2021 08:10
A list of Docker commands
# Images
# nginx, rabbitmq
# Run a container from a image
# Check if the image exists locally, else, pull from Docker hub
sudo docker run nginx
# List all running containers
# Each container has a unique name & ID
sudo docker ps
@PraneethKarnena
PraneethKarnena / nginx_js.conf
Created July 15, 2021 19:23
Nginx JavaScript-frontend Config
server {
listen 80;
server_name hoya-practice.technarp.com;
#access_log /var/log/nginx/host.access.log main;
location / {
root /var/www/hoya-practice/;
index index.html index.htm;
try_files $uri $uri/ /index.html;
@PraneethKarnena
PraneethKarnena / nginx_cors.conf
Last active July 15, 2021 19:21
Nginx CORS configuration
server {
listen 80;
server_name www.example.com;
#access_log /var/log/nginx/host.access.log main;
#location / {
# root /usr/share/nginx/html;
# index index.html index.htm;
#}