This project is the Ruby API library for using in Rails projects.
If you are wanting to use the Civo command line interface, that's a separate project. However, as a brief quick-start, all you need to do is install it, configure it with the token supplied when you signed up for your Civo account and you're ready to go:
gem install civo_cli
civo tokens:save default my_api_key_from_api_dot_civo_dot_com_goes_here
To use the library in your own Rails (or Sinatra, etc) projects you can just add it to the Gemfile:
gem 'civo'
Install the gem:
bundle install
You need to define in an intializer, Heroku config or .env
file ENV["CIVO_TOKEN"]
and ENV["CIVO_URL"]
and these will be picked up by the classes.
Then you can use classes like this:
size = Civo::Size.all.first
region = Civo::Region.all.first.code
template = Civo::Template.all.first.id
Civo::SshKey.create(name: "default", public_key: File.read("~/.ssh/id_dsa.pub"))
instance = Civo::Instance.create(hostname: "text.example.com", size: size, region: region,
template: template, public_ip: true, ssh_key: "default")
The API library consists of a handful of Flexirest classes that implement the Civo API. There is full documentation on the API available at https://api.civo.com/.
If you are hitting an old legacy v1 API (i.e. not running against api.civo.com), you'd need to make the following changes:
- Set
ENV["CIVO_API_VERSION"]
to be1
in your initializer - While legacy tokens are usable in v1 API servers at the moment, in the future this will change to be an administrator API key and secret. More to follow...