Sha256: 217bffbcc4fa6efbec6654d3f199dfcce0b268b46a8ee4aa5b81ffeb136c5da6
Contents?: true
Size: 643 Bytes
Versions: 18
Compression:
Stored size: 643 Bytes
Contents
# frozen_string_literal: true $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require File.expand_path('../../lib/discourse_api', __FILE__) config = DiscourseApi::ExampleHelper.load_yml client = DiscourseApi::Client.new(config['host'] || 'http://localhost:3000') client.api_key = config['api_key'] || "YOUR_API_KEY" client.api_username = config['api_username'] || "YOUR_USERNAME" # get list of backup files puts client.backups() # create backup puts client.create_backup() # restore backup puts client.restore_backup("backup_file_name.tar.gz") # download backup puts client.download_backup("backup_file_name.tar.gz", "/tmp/")
Version data entries
18 entries across 18 versions & 1 rubygems