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
#!/bin/bash | |
USAGE="Usage: -p Project path" | |
while getopts p: options; do | |
case $options in | |
p ) PROJECT="$OPTARG";; | |
esac | |
done |
As mensagens dos commits devem servir para três importantes coisas:
Escreva sua mensagem de commit desta forma:
""" | |
This fabfile automates deployment of and moving data between Django apps | |
in development (devel), staging (stage), and production (live) | |
environments. | |
Use it as: | |
fab -H user@host:port deploy:stage | |
Requirements |