Skip to content

Instantly share code, notes, and snippets.

@d0ugal
Created April 22, 2010 07:40
Show Gist options
  • Save d0ugal/374929 to your computer and use it in GitHub Desktop.
Save d0ugal/374929 to your computer and use it in GitHub Desktop.
Django Aliases
#!/bin/bash
# This hook is run after every virtualenv is activated.
alias dj='python manage.py'
alias djr='dj runserver 0.0.0.0:8000'
alias djdb='dj dbshell'
alias djs='dj shell'
alias djt='dj test'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment