Created
November 15, 2012 11:02
-
-
Save magopian/4077998 to your computer and use it in GitHub Desktop.
Sample Makefile for Django (use with project templates)
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
.PHONY: all help translate test clean update compass collect rebuild | |
SETTINGS={{ project_name }}.settings | |
TEST_SETTINGS={{ project_name }}.test_settings | |
# target: all - Default target. Does nothing. | |
all: | |
@echo "Hello $(LOGNAME), nothing to do by default" | |
@echo "Try 'make help'" | |
# target: help - Display callable targets. | |
help: | |
@egrep "^# target:" [Mm]akefile | |
# target: translate - calls the "makemessages" django command | |
translate: | |
cd {{ project_name }} && django-admin.py makemessages --settings=$(SETTINGS) -i "site-static/*" -a --no-location | |
# target: test - calls the "test" django command | |
test: | |
django-admin.py test --settings=$(TEST_SETTINGS) | |
# target: clean - remove all ".pyc" files | |
clean: | |
django-admin.py clean_pyc --settings=$(SETTINGS) | |
# target: update - install (and update) pip requirements | |
update: | |
pip install -U -r requirements.pip | |
# target: compass - compass compile all scss files | |
compass: | |
cd {{ project_name }}/compass && compass compile | |
# target: collect - calls the "collectstatic" django command | |
collect: | |
django-admin.py collectstatic --settings=$(SETTINGS) --noinput | |
# target: rebuild - clean, update, compass, collect, then rebuild all data | |
rebuild: clean update compass collect | |
django-admin.py reset_db --settings=$(SETTINGS) --router=default --noinput | |
django-admin.py syncdb --settings=$(SETTINGS) --noinput | |
django-admin.py migrate --settings=$(SETTINGS) | |
#django-admin.py loaddata --settings=$(SETTINGS) <your fixtures here> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment