Created
September 3, 2014 01:31
-
-
Save iamblue/919706b7bb99f2ff895c 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
| //js | |
| s3 = new aws-sdk.S3({ | |
| credentials:{ | |
| accessKeyId: $mtk.config.S3.accessKeyId, | |
| secretAccessKey:$mtk.config.S3.secretAccessKey | |
| } | |
| ,endpoint: $mtk.config.S3.endpoint | |
| }) | |
| //livescript | |
| s3 = new aws-sdk.S3 { | |
| credentials: | |
| accessKeyId: $mtk.config.S3.accessKeyId | |
| secretAccessKey:$mtk.config.S3.secretAccessKey | |
| endpoint: $mtk.config.S3.endpoint | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment