Libove Blog

Personal Blog about anything - mostly programming, cooking and random thoughts

Aliases for working with Django

# Published: by h4kor

I'm using this aliases to work with Django. They save me a few seconds per command and lower the burden of trying something in the shell by a tiny amount :).

alias vv=". venv/bin/activate"
alias djs="python manage.py shell"
alias djr="python manage.py runserver"
alias djmm="python manage.py makemigrations"
alias djmi="python manage.py migrate"