Skip to content

Instantly share code, notes, and snippets.

View marcelobrake's full-sized avatar
🔥

Marcelo Divaldo Brake marcelobrake

🔥
View GitHub Profile
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Por favor, forneça um diretório como parâmetro!"
exit 1
fi
if [ ! -d "$1" ]; then
echo "$1 não é um diretório válido!"
exit 1
@terabyte
terabyte / amazon.md
Created December 6, 2017 02:27
Amazon's Build System

Prologue

I wrote this answer on stackexchange, here: https://stackoverflow.com/posts/12597919/

It was wrongly deleted for containing "proprietary information" years later. I think that's bullshit so I am posting it here. Come at me.

The Question

Amazon is a SOA system with 100s of services (or so says Amazon Chief Technology Officer Werner Vogels). How do they handle build and release?