go:
	# Note that putting models last (or after start_session_form_mod?) makes pylint spew a bunch of irrelevant stuff.
	./this-pylint --to-pylint board_mod.py start_session_form_mod.py views.py log_mod.py tester
	# django-lint conflicts with pylint to some extent.  It also appears to depend on the OS' pylint, but conflicts with use of the OS' pylint as well
	#django-lint ..
	(cd .. && python manage.py validate)
	./tester

wipe-data:
	(cd .. && rm -f database.sqlite3)

syncdb:
	(cd .. && python manage.py syncdb)

clean:
	rm -f *.pyc