Updating Makefile + Add gitignore

This commit is contained in:
Jake Champlin 2017-06-06 16:27:01 -04:00
parent eb5570722e
commit 0192d62271
No known key found for this signature in database
GPG key ID: DC31F41958EF4AC2
2 changed files with 32 additions and 1 deletions

31
.gitignore vendored Normal file
View file

@ -0,0 +1,31 @@
*.dll
*.exe
.DS_Store
example.tf
terraform.tfplan
terraform.tfstate
bin/
modules-dev/
/pkg/
website/.vagrant
website/.bundle
website/build
website/node_modules
.vagrant/
*.backup
./*.tfstate
.terraform/
*.log
*.bak
*~
.*.swp
.idea
*.iml
*.test
*.iml
website/vendor
# Test exclusions
!command/test-fixtures/**/*.tfstate
!command/test-fixtures/**/.terraform/

View file

@ -7,7 +7,7 @@ default: build
build: fmtcheck
go install
test: fmtcheck errcheck
test: fmtcheck
go test -i $(TEST) || exit 1
echo $(TEST) | \
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4