When I start to use an existing app/codebase, I'm often confounded by which environment variables it's wired to use. People make bad docs, and I hate hunting and being disoriented by this part of app dev.
Is there a way to see all environment variables that it can use? Like an npm run...
task that lists them all statically?
process.env
and give you another API for env vars. But that's a different scope of issue, and I think your answer is reasonable enough. – Groundnut