Guest User

Untitled

a guest
Aug 13th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.29 KB | None | 0 0
  1. # Makefile to ease the usage of manage.py
  2.  
  3. PYTHON = python
  4. APP    = books
  5. .PHONY: run
  6. run:
  7.     $(PYTHON) manage.py runserver
  8.  
  9. .PHONY: shell
  10. shell:
  11.     $(PYTHON) manage.py shell
  12.  
  13. .PHONY: sync
  14. sync:
  15.     $(PYTHON) manage.py syncdb
  16.  
  17. .PHONY: table
  18. table:
  19.     $(PYTHON) manage.py sqlall $(APP)
Add Comment
Please, Sign In to add comment