Skip to content

Commit

Permalink
Update app.json with more env variables (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
reichert621 committed Aug 13, 2020
1 parent 8457c32 commit d388242
Showing 1 changed file with 27 additions and 11 deletions.
38 changes: 27 additions & 11 deletions app.json
Expand Up @@ -8,27 +8,43 @@
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"BACKEND_URL": {
"description": "The url of your of your site example: APP-NAME.herokuapp.com will be the same as REACT_APP_URL for one click heroku deploys",
"value": "CHANGE-ME.herokuapp.com",
"required": true
},
"REACT_APP_URL": {
"description": "The url of your of your site example: APP-NAME.herokuapp.com will be the same as REACT_APP_URL for one click heroku deploys",
"value": "CHANGE-ME.herokuapp.com",
"required": true
},
"PAPERCUPS_SLACK_CLIENT_ID": {
"description": "The client ID of your Slack app",
"required": false
},
"PAPERCUPS_SLACK_CLIENT_SECRET": {
"description": "The client secret of your Slack app",
"required": false
},
"REACT_APP_SLACK_CLIENT_ID": {
"description": "The client ID of your Slack app (should be the same as above)",
"required": false
},
"REACT_APP_GOOGLE_ANALYTICS_ID": {
"description": "Your Google Analytics ID (e.g. UA-000000000-1)",
"required": false
},
"FROM_ADDRESS": {
"description": "The email address where you will be alerting your customer service agents from",
"required": false
},
"MAILGUN_API_KEY": {
"description": "Mail gun api key",
"description": "Mailgun api key",
"required": false
},
"DOMAIN": {
"description": "The domain you are sending email from",
"required": false
},
"BACKEND_URL": {
"description": "The url of your of your site example: APP-NAME.herokuapp.com will be the same as REACT_APP_URL for one click heroku deploys",
"value": "CHANGE-ME.herokuapp.com",
"required": true
},
"REACT_APP_URL": {
"description": "The url of your of your site example: APP-NAME.herokuapp.com will be the same as REACT_APP_URL for one click heroku deploys",
"value": "CHANGE-ME.herokuapp.com",
"required": true
}
},
"addons": ["heroku-postgresql"],
Expand Down

0 comments on commit d388242

Please sign in to comment.