Add some Gunicorn aliases and the oo alias.

This commit is contained in:
Steve Losh 2010-04-30 15:11:26 -04:00
commit 0be470c37d
2 changed files with 8 additions and 1 deletions

View file

@ -4,3 +4,7 @@ alias pmrpg='pmrp --adminmedia=`pwd`/media/admin'
alias pmsdb='python manage.py syncdb' alias pmsdb='python manage.py syncdb'
alias pms='python manage.py shell' alias pms='python manage.py shell'
alias pmlf='python manage.py loaddata fixtures/*' alias pmlf='python manage.py loaddata fixtures/*'
alias gs='gunicorn_django'
alias gk='kill `cat .gunicorn.pid`'
alias gl='tail -f .gunicorn.log'

View file

@ -22,3 +22,6 @@ function pman() {
function pj() { function pj() {
python -mjson.tool python -mjson.tool
} }
## Open current directory
alias oo='open .'