Sha256: 622cbc4c037abdad1d32fdfefdf4a7bfeb8bd9f546eb3d9ef193cb9d11efe0d3
Contents?: true
Size: 576 Bytes
Versions: 1
Compression:
Stored size: 576 Bytes
Contents
# frozen_string_literal: true module RubyApiPackCloudways module Constants # PHCDEVONE - Define the base URL for the Cloudways API CW_API_URL = 'https://api.cloudways.com/api/v1' # PHCDEVONE - Define the authentication path for the Cloudways API CW_API_PATH_TOKEN = '/oauth/access_token' # PHCDEVONE - Retrieve the Cloudways API email from environment variables CW_API_EMAIL = ENV['PHCDEV_API_CLOUDWAYS_EMAIL'] # PHCDEVONE - Retrieve the Cloudways API key from environment variables CW_API_KEY = ENV['PHCDEV_API_CLOUDWAYS_KEY'] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_api_pack_cloudways-0.1.0.pre.4 | lib/ruby_api_pack_cloudways/constants.rb |