Ethan Paul
fe0fc835cd
Add makefile and targets for building local dev environment Add script for linking dev collections into local collection dir Add local collection dir to gitignore
9 lines
272 B
Makefile
9 lines
272 B
Makefile
clean:
|
|
rm --recursive --force .ansible/
|
|
|
|
dev:
|
|
poetry install --remove-untracked
|
|
poetry run pre-commit install
|
|
poetry run ansible-galaxy collection install --requirements-file ./requirements.yaml --collections-path ./.ansible
|
|
./dynamically-link-local-collections.bash
|