dotfiles/Pipfile

19 lines
374 B
TOML
Raw Normal View History

2018-09-09 08:43:40 +01:00
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
ansible = "*"
[dev-packages]
2018-12-25 15:42:17 +00:00
yamllint = "*"
2018-09-09 08:43:40 +01:00
[requires]
python_version = "3.7"
2018-09-09 08:56:05 +01:00
[scripts]
2018-09-10 21:11:01 +01:00
deploy = "sudo ansible-playbook -i hosts dotfiles.yml"
2018-09-11 20:43:16 +01:00
check = "ansible-playbook -i hosts dotfiles.yml --syntax-check"
2018-09-17 17:09:24 +01:00
lint = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"