Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

20 rindas
411B

  1. default: deploy
  2. test: venv/
  3. venv/bin/python -u test.py
  4. run: venv/
  5. pkill Python || true
  6. make test
  7. venv/bin/python -u pico.py
  8. deploy:
  9. rsync --archive --exclude-from=.gitignore . root@roderic.ca:/home/pico.chat/
  10. ssh root@roderic.ca "cd /home/pico.chat/ && service pico.chat restart"
  11. venv/: requirements.txt
  12. rm -rf venv
  13. python3 -m venv venv
  14. venv/bin/pip install websockets
  15. touch requirements.txt venv