Created
July 1, 2019 15:23
-
-
Save sibelius/2605050a89fdf69d9b6fbe5c787615f9 to your computer and use it in GitHub Desktop.
Keep all your process.env in a config file, so it is easy to check env vars available
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const config = { | |
GRAPHQL_URL: process.env.GRAPHQL_URL, | |
A: process.env.A, | |
}; | |
export default config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment