Skip to content

Instantly share code, notes, and snippets.

@tacsio
Created March 18, 2011 00:43
Show Gist options
  • Save tacsio/875427 to your computer and use it in GitHub Desktop.
Save tacsio/875427 to your computer and use it in GitHub Desktop.
Makefile script django
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