Last active
October 3, 2022 11:56
-
-
Save ronelliott/5182239 to your computer and use it in GitHub Desktop.
Helpful Bash Aliases for Django
This file contains hidden or 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
alias dj="python manage.py" | |
alias djdd="python manage.py dumpdata" | |
alias djld="python manage.py loaddata" | |
alias djm="python manage.py migrate" | |
alias djsh="python manage.py shell" | |
alias djsm="python manage.py schemamigration" | |
alias djs="python manage.py syncdb --noinput" | |
alias djt="python manage.py test" | |
alias djrs="python manage.py runserver" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment