-
Notifications
You must be signed in to change notification settings - Fork 6
Changed vars and some titles #11
base: master
Are you sure you want to change the base?
Conversation
@@ -20,7 +20,7 @@ | |||
"typescript": "3.7.2" | |||
}, | |||
"scripts": { | |||
"start": "react-scripts start", | |||
"start": "HOST=0.0.0.0 react-scripts start", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this necessary? seems to start fine on localhost
for me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah just saw your other issue. disregard :)
export const ipfsProvider = process.env.REACT_APP_INTERPLANETARY_FISSION_URL || 'https://hostless.dev'; | ||
const username = process.env.REACT_APP_INTERPLANETARY_FISSION_USERNAME; | ||
const password = process.env.REACT_APP_INTERPLANETARY_FISSION_PASSWORD; | ||
export const ipfsProvider = process.env.INTERPLANETARY_FISSION_URL || 'https://runfission.com'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the REACT_APP_
here is actually intentional. Otherwise react can't find the env variables: #12 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok. But in Heroku, from our add-on, it is without REACT_APP. Does it just do this automatically?
Main change is to use the correct default Heroku variable names (and removed REACT_APP_ from in front of elsewhere that I found it), added some names / titles in a couple of spots,