Skip to content

Commit

Permalink
changed PUBLIC_KEY to SITE_KEY and PRIVATE_KEY to SECRET_KEY
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielRMuller committed Jan 10, 2019
1 parent 603cd4e commit 09705f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ STORIES_CEILING=300
CDN_URL=http://xpto.cloudfront.net
NEW_RELIC_LICENSE_KEY=your_license_key
INTEGRATION_URI_MATTERMOST=http://foo.com
RECAPTCHA_PUBLIC_KEY=
RECAPTCHA_PRIVATE_KEY=
RECAPTCHA_SITE_KEY=
RECAPTCHA_SECRET_KEY=
WEBPACK_HOST="0.0.0.0"
WEBPACK_MANIFEST_HOST="localhost"
WEBPACK_MANIFEST_PORT="3808"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ to the previous section for instructions. Then:
$ heroku config:set CDN_URL=http://xpto.cloudfront.net

# Google Recaptcha keys
$ heroku config:set RECAPTCHA_PUBLIC_KEY=xyz RECAPTCHA_PRIVATE_KEY=xyz
$ heroku config:set RECAPTCHA_SITE_KEY=xyz RECAPTCHA_SECRET_KEY=xyz

# Add postgresql
$ heroku addons:create heroku-postgresql:hobby-dev
Expand Down
8 changes: 4 additions & 4 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
"value": "production",
"required": true
},
"RECAPTCHA_PRIVATE_KEY": {
"description": "Create a Recaptcha account and copy the private key here",
"RECAPTCHA_SECRET_KEY": {
"description": "Create a Recaptcha account and copy the secret key here",
"required": true
},
"RECAPTCHA_PUBLIC_KEY": {
"description": "Create a Recaptcha account and copy the public key here",
"RECAPTCHA_SITE_KEY": {
"description": "Create a Recaptcha account and copy the site key here",
"required": true
},
"SECRET_KEY_BASE": {
Expand Down

0 comments on commit 09705f9

Please sign in to comment.