This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.black] | |
line-length = 88 | |
exclude = ''' | |
/( | |
\.git | |
| \.hg | |
| \.mypy_cache | |
| \.tox | |
| \.venv | |
| _build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://editorconfig.org/ | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
end_of_line = lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
#} |