Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bsfy 215 #2758

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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