Makefile 258 B

123456789
  1. check:
  2. PYTHONPATH=$(shell pwd) python manage.py test --verbosity=2 django_openid_auth
  3. run-example-consumer:
  4. PYTHONPATH=$(shell pwd) python manage.py syncdb --migrate
  5. PYTHONPATH=$(shell pwd) python manage.py runserver
  6. .PHONY: check run-example-consumer