Heirloom is in maintenance mode!
We will continue to provide support for bug fix requests, however new features will not be added.
We recommend using the AWS CLI and GPG to distribute encrypted files in S3.
The goal of Heirloom is to securely and easily transport data to cloud hosted applciations.
Heirloom creates archives from directories. Their archives are versioned and hosted in geographic distributed locations. Heirloom tracks metadata about those archives, both about the archive locations, as well as arbitrary tags which can be set by an engineer or process. It supports encryption and authorization to allow for securely transporting sensitive data over cloud storage services.
- Ruby version 1.9.2 or higher installed.
- AWS account access key and secret key.
Install the gem
gem install heirloom --no-ri --no-rdoc
To get started, copy the sample below to ~/.heirloom.yml and update the specified fields.
default:
access_key: UPDATE_ME
secret_key: UPDATE_ME
metadata_region: us-west-1
Multiple environments can be defined in heirloom.yml and selected via the cli with the -e or --environment option
prod:
access_key: UPDATE_ME
secret_key: UPDATE_ME
metadata_region: us-west-1
preprod:
access_key: UPDATE_ME
secret_key: UPDATE_ME
metadata_region: us-west-1
You can now use Heirloom. For a list of commands
heirloom -h
For help on a specific command, append -h to the command:
heirloom setup -h
For help an overview of heirloom, see the Overview Wiki.
For detailed setup instructions, see the Getting Started Guide.
For more information, please view the Heirloom Wiki.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request