- default: deploy
 - 
 - test: venv/
 - 	venv/bin/python -u test.py
 - 
 - run: venv/
 - 	pkill Python || true
 - 	make test
 - 	venv/bin/python -u pico.py
 - 
 - deploy:
 - 	rsync --archive --exclude-from=.gitignore . root@roderic.ca:/home/pico.chat/
 - 	ssh root@roderic.ca "cd /home/pico.chat/ && service pico.chat restart"
 - 
 - venv/: requirements.txt
 - 	rm -rf venv
 - 	python3 -m venv venv
 - 	venv/bin/pip install websockets
 - 	touch requirements.txt venv
 
 
  |