Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created July 1, 2019 15:23
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sibelius/2605050a89fdf69d9b6fbe5c787615f9 to your computer and use it in GitHub Desktop.
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
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