| commit | aefe74a0578ebfeb42ddeb0f7edb4ef78484bf88 | [log] [tgz] |
|---|---|---|
| author | kt <kt@katbyte.me> | Wed May 02 11:12:17 2018 -0700 |
| committer | kt <kt@katbyte.me> | Wed May 02 11:12:17 2018 -0700 |
| tree | b446a98b54d38edaafee7119221d933f3c88d27e | |
| parent | 0b1eadd3127c16233aca5f0e4cf5ed34475dc15f [diff] |
README.md: correct provider organization & missing repository name

Clone repository to: $GOPATH/src/github.com/terraform-providers/terraform-provider-cloudstack
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers $ git clone git@github.com:terraform-providers/terraform-provider-cloudstack
Enter the provider directory and build the provider
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-cloudstack $ make build
If you wish to work on the provider, you‘ll first need Go installed on your machine (version 1.8+ is required). You’ll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.
To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.
$ make bin ... $ $GOPATH/bin/terraform-provider-cloudstack ...
In order to test the provider, you can simply run make test.
$ make test
In order to run the full suite of Acceptance tests, run make testacc.
Note: Acceptance tests create real resources, and often cost money to run.
$ make testacc