Skip to content

Commit

Permalink
fix documentation, bump version, and prepare for npm publish
Browse files Browse the repository at this point in the history
  • Loading branch information
jokeyrhyme committed Aug 8, 2013
1 parent fe6dbf2 commit debaea7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
25 changes: 23 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Synchronise a local directory with AWS CloudFront / S3, maintaining correct headers, etc.

**This project is not yet functional.**
Functionality is sufficient to replace s3cmd with better MIME detection.

## Goals

Expand Down Expand Up @@ -96,7 +96,28 @@ _(Coming soon)_
_(Coming soon)_

## Examples
_(Coming soon)_

### Example .cdn-sync.json

```
{
"targets": [
{
"type": "aws",
"options": {
"accessKeyId": "...",
"secretAccessKey": "...",
"region": "...",
"sslEnabled": true,
"Bucket": "..."
},
"strategy": ["clone"]
}
]
}
```

Note: for targets[index].options, use the options you would pass to the [AWS.S3 constructor](http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3_20060301.html#constructor-property).

## Contributing
Formal styleguide for this project is JSLint. See JSLint settings at the top of
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cdn-sync",
"description": "deflate / synchronous assets to a CDN",
"version": "0.0.1",
"description": "deflate / synchronise assets to a CDN",
"version": "0.1.0",
"homepage": "https://github.com/jokeyrhyme/cdn-sync",
"author": {
"name": "Ron Waldon",
Expand Down

0 comments on commit debaea7

Please sign in to comment.