Last Updated: February 25, 2016
·
390
· dev360

Django bash aliases

Put this in your bashrc or zshrc file:

alias runserver="python manage.py runserver"
alias shell="python manage.py shell"
alias migrate="python manage.py migrate"
alias migration="python manage.py schemamigration"