A simple alternative to Chef and Puppet to bootstrap *nix machines.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.PHONY: default test clean all |
|
default: test |
|
|
|
# Installs pre-commit hooks |
|
.PHONY: install-hooks |
|
install-hooks: |
|
pre-commit install --install-hooks |
|
|
|
.PHONY: test |
|
test: |
|
pre-commit run --all-files |
|
|
|
.PHONY: docker-build |
|
docker-build: |
|
docker build . -t devenv-$(USER)
|
|
|