You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							 | 
							- 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
 
 
  |