Skip to content

Commit

Permalink
examples: support COMPANION_AWS_ENDPOINT env var in aws+companion exa…
Browse files Browse the repository at this point in the history
…mple
  • Loading branch information
goto-bus-stop committed Nov 1, 2019
1 parent 07b250d commit 1ab63aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/aws-companion/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ const options = {
key: process.env.COMPANION_AWS_KEY || process.env.UPPYSERVER_AWS_KEY,
secret: process.env.COMPANION_AWS_SECRET || process.env.UPPYSERVER_AWS_SECRET,
bucket: process.env.COMPANION_AWS_BUCKET || process.env.UPPYSERVER_AWS_BUCKET,
region: process.env.COMPANION_AWS_REGION || process.env.UPPYSERVER_AWS_REGION
region: process.env.COMPANION_AWS_REGION || process.env.UPPYSERVER_AWS_REGION,
endpoint: process.env.COMPANION_AWS_ENDPOINT
}
},
server: { host: 'localhost:3020' },
Expand Down

0 comments on commit 1ab63aa

Please sign in to comment.