Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ strategy” of deploying assets to S3 and `index.html` to a Redis server. You ca
deploy from your own machine too. First, update your `.env` file with the following variables:

```
AWS_KEY=key
AWS_SECRET=secret
TRAVIS_S3_ACCESS_KEY_ID=key
TRAVIS_S3_SECRET_ACCESS_KEY=secret
```
Then run:

Expand Down
4 changes: 2 additions & 2 deletions config/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ module.exports = function (deployTarget) {
},
s3: {
region: 'eu-west-1',
accessKeyId: process.env.AWS_KEY,
secretAccessKey: process.env.AWS_SECRET
accessKeyId: process.env.TRAVIS_S3_ACCESS_KEY_ID,
secretAccessKey: process.env.TRAVIS_S3_SECRET_ACCESS_KEY
}
};

Expand Down