dotfiles/Pipfile

18 lines
313 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 08:53:04 +01:00
deploy = "sudo ansible-playbook -i hosts dotfiles.yml -C"
2018-09-09 09:33:20 +01:00
test = "yamllint -sc yamllint.yml yamllint.yml dotfiles.yml tasks/ vars.yml"