A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
#!/usr/bin/env bash | |
set -e | |
remove_flag="" | |
if [ "$1" = "true" ]; then | |
remove_flag="--remove-existing-container" | |
fi | |
# Generate certificate |