Sha256: 4c13a3de811c29260f0e68761f60a1eba1b395b83f48eb7f20afd0b8fabef8d4
Contents?: true
Size: 492 Bytes
Versions: 15
Compression:
Stored size: 492 Bytes
Contents
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require File.expand_path('../../lib/discourse_api', __FILE__) client = DiscourseApi::Client.new("http://localhost:3000") client.api_key = "YOUR_API_KEY" client.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")
Version data entries
15 entries across 15 versions & 1 rubygems