Skip to content

Instantly share code, notes, and snippets.

Avatar

Rafael Menezes rmsouza

View GitHub Profile
@yetanotherchris
yetanotherchris / install-rabbitmq.sh
Last active May 10, 2022 20:27
RabbitMQ on Docker with admin UI
View install-rabbitmq.sh
# AWS specific install of Docker
sudo yum update -y
sudo yum install -y docker
sudo service docker start
sudo usermod -a -G docker ec2-user
# exit the SSH session, login again
# Docker
docker run -d --hostname my-rabbit --name some-rabbit -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 rabbitmq
@iros
iros / API.md
Created August 22, 2012 14:42
Documenting your REST API
View API.md

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method: