dotfiles/Pipfile

20 lines
427 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 = "*"
2018-09-09 09:33:20 +01:00
yamllint = "*"
2018-09-09 08:43:40 +01:00
[dev-packages]
[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
dryrun = "ansible-playbook -i hosts dotfiles.yml -C"
check = "ansible-playbook -i hosts dotfiles.yml --syntax-check"
2018-09-09 09:33:20 +01:00
test = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"