From 6ca6790fb1a1d6d2f0e9cdcc0f2ba2c76d61777c Mon Sep 17 00:00:00 2001 From: Akhil Bansal Date: Fri, 3 Jun 2011 11:34:15 +0530 Subject: [PATCH] Adding MIT LICENSE --- LICENSE | 20 ++++++++++++++++++++ github2s3.rb | 7 ++++--- 2 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c8d01e7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2011 Akhil Bansal + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/github2s3.rb b/github2s3.rb index 0f01c62..e7d5a3b 100755 --- a/github2s3.rb +++ b/github2s3.rb @@ -14,11 +14,12 @@ # AWS S3 credentials -AWS_ACCESS_KEY_ID = "1QX4YASQYJA3051RZ702" -AWS_SECRET_ACCESS_KEY = "WzVjVO/wjpvRZ2UammV4kDrDh7VRjhIg//ESuT79" + +AWS_ACCESS_KEY_ID = "ACCESS_KEY" +AWS_SECRET_ACCESS_KEY = "SECRET_KEY" # S3 bucket name to put dumps -S3_BUCKET = "git-ak-bak" +S3_BUCKET = "github-backup" USE_SSL = true