

=== RubyMine Setup ===

    1. building the app every scenario run

	Run -> Edit Configurations... 
	
	Templates -> Cucumber

	Add Before launch: External tool
	
		Program: /usr/local/go/bin/go
		Arguments: build -o bin/vcert ../cmd/vcert
		Working directory: $GOPATH/src/github.com/Venafi/vcert/v4/aruba
	
	OK -> OK -> Apply -> OK


    2. setting up local variables so that real-run scenarios knocks to real endpoints from IDE:

	$ vi aruba/features/step_definitions/0.endpoints.rb

		ENV['TPP_URL']      = "https://tpp.venafi.example.com:5008/vedsdk"
		ENV['TPP_USER']     = "user"
		ENV['TPP_PASSWORD'] = "xxx"
		ENV['TPP_ZONE']     = 'some\zone'
		ENV['CLOUD_URL']    = "https://api.venafi.example.com/v1"
		ENV['CLOUD_APIKEY']    = "xxxxxxxx-b256-4c43-a4d4-15372ce2d548"
		ENV['CLOUD_ZONE']   = "Default"
