您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
409B

  1. default: test
  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