Created
March 18, 2011 00:43
-
-
Save tacsio/875427 to your computer and use it in GitHub Desktop.
Makefile script django
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
run: | |
@python manage.py runserver 8000 | |
createdb: | |
@python manage.py syncdb | |
clean: | |
@find . -type f -name "*.pyc" | xargs rm -rf | |
@clear | |
search: | |
@clear | |
@grep -r --color=always --exclude=Makefile 'TODO' . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment