Does PROCESS.ENV have a buffer limit? #728
Replies: 1 comment
-
No, there is no limit. This is likely a configuration issue with your pipeline. For CI pipelines we don't recommend packaging your |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, running into the following issue:
Using dotenv to read in a configuration file. The file path that is being passed seems correct and the variables from the the config file are appended to PROCESS.ENV, locally.
But, when I executed the same code to load the file during pipeline runs the variables from the configuration file seem to never get appended to PROCESS.ENV.
Is there a limit to how much PROCESS.ENV can store?
If not, how do I debug why my configuration file contents are not being appended to PROCESS.ENV?
Code for loading targeted configuration file:
let envTestFile = path.resolve(__dirname, "configs",
.env.${process.env.WEB_ENV}
);dotenv.config({path: envTestFile});
Beta Was this translation helpful? Give feedback.
All reactions