Created
April 22, 2010 07:40
-
-
Save d0ugal/374929 to your computer and use it in GitHub Desktop.
Django Aliases
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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