diff --git a/Makefile b/Makefile index 9b57ff7..c5ca8a2 100644 --- a/Makefile +++ b/Makefile @@ -27,10 +27,16 @@ nuke: ## Full wipe of the local environment, uncommitted files, and database. nuke: venv-check venv-wipe git-full-clean database-drop reset: ## Reset your local environment. Useful after switching branches, etc. -reset: venv-check venv-wipe install-local fab-get-data django-migrate django-user-passwords django-dev-createsuperuser +reset: venv-check venv-wipe install-local fab-get-backup django-migrate django-user-passwords django-dev-createsuperuser + +full-reset: ## Reset your local environment and download all media files. +full-reset: venv-check venv-wipe install-local fab-get-data django-migrate django-user-passwords django-dev-createsuperuser clear: ## Like reset but without the wiping of the installs. -clear: fab-get-data django-migrate django-user-passwords django-dev-createsuperuser +clear: fab-get-backup django-migrate django-user-passwords django-dev-createsuperuser + +full-clear: ## Fresh download of remotely stored data including media files. +full-clear: fab-get-data django-migrate django-user-passwords django-dev-createsuperuser check: ## Check for any obvious errors in the project's setup. check: pipdeptree-check npm-check django-check