Last active
December 16, 2015 06:09
-
-
Save nickveenhof/5389713 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd s3cmd-1.0.1 | |
python setup.py install | |
s3cmd --configure # to install the key and bucket info | |
You'll be prompted for Amazon account ID and secret key. You can | |
get this by logging in to your Amazon account and visiting the | |
connection-info screen, or from your secure credentials if you | |
have them. | |
You'll also be asked for a key to use for encrypting S3 | |
uploads. This can apparently be anything. | |
STEP FOUR: upload to S3 it goes something like this: cd [directory right above 'ubuntu'] | |
# to upload to the development package repository | |
s3cmd put --acl-public --recursive ubuntu s3://pkgserver-dev.hosting.acquia.com/ | |
# to upload to the production package repository | |
s3cmd put --acl-public --recursive ubuntu s3://pkgserver.hosting.acquia.com/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment