According to this documentation:
To use a dotenv variable:
process.env.ENV_VARIABLE // ENV_VARIABLE is the name of the variable you want to access.
Pretty straight forward node stuff.... So in my root folder I create a dotenv file ".env"
there I put:
TEST_VARIABLE=HITHERE
Then in a js file I run:
console.log(cep_node.process.env.TEST_VARIABLE);
This is appearing as undefiend. What do I need to do to use my dotenv file?