dotfiles/Pipfile
2018-09-11 20:43:16 +01:00

20 lines
427 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
ansible = "*"
yamllint = "*"
[dev-packages]
[requires]
python_version = "3.7"
[scripts]
deploy = "sudo ansible-playbook -i hosts dotfiles.yml"
dryrun = "ansible-playbook -i hosts dotfiles.yml -C"
check = "ansible-playbook -i hosts dotfiles.yml --syntax-check"
test = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"