No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- default: test
-
- 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
|