Permalink
Browse files

Add base_url to heroku deploy

  • Loading branch information...
1 parent 7b8b1b2 commit d8cd1c5ff546285c1cd0f1c4c35188b8bd656255 @mscoutermarsh mscoutermarsh committed Dec 4, 2015
Showing with 8 additions and 1 deletion.
  1. +1 −0 .env.example
  2. +7 −1 app.json
View
@@ -1 +1,2 @@
SHARE_MEOW_SECRET_KEY=change_this_to_something_else
+BASE_URL=https://url-to-your-sharemeow-app.com
View
@@ -7,7 +7,13 @@
"env": {
"SHARE_MEOW_SECRET_KEY": {
"description": "A secret key used for authentication.",
- "generator": "secret"
+ "generator": "secret",
+ "required": "true"
+ },
+ "BASE_URL": {
+ "description": "The URL to your deployed ShareMeow App",
+ "value": "https://app-name.herokuapp.com",
+ "required": "true"
},
"WEB_CONCURRENCY": {
"description": "The number of Puma processes to run.",

0 comments on commit d8cd1c5

Please sign in to comment.